Skip to content

Instantly share code, notes, and snippets.

@CouldBeThis
Last active November 8, 2021 10:53
Show Gist options
  • Save CouldBeThis/b4ec12a358e4fa08f9e3b4778e64c389 to your computer and use it in GitHub Desktop.
Save CouldBeThis/b4ec12a358e4fa08f9e3b4778e64c389 to your computer and use it in GitHub Desktop.
bulk extraction of archives
@CouldBeThis
Copy link
Author

CouldBeThis commented Nov 8, 2021

recursively untar

fd .tar.gz --exec tar xvzf {/}

recursively untar and move archive to trash when done

fd .tar.gz --exec tar xvzf {/} && trash {/}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment