Skip to content

Instantly share code, notes, and snippets.

@catichenor
Last active May 3, 2016 21:40
Show Gist options
  • Save catichenor/d82e457168c8d07c3566e658c885ae78 to your computer and use it in GitHub Desktop.
Save catichenor/d82e457168c8d07c3566e658c885ae78 to your computer and use it in GitHub Desktop.
Unzip and untar all files in the current directory
#!/bin/bash
find . -name "*.tar.gz" -maxdepth 1 -exec tar -zxvf {} \; # untar/ungzip all archives in the current directory
# find . -name "*.tar.bz2" -maxdepth 1 -exec tar -vxjf {} \; # Do the same for .tar.bz2 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment