Skip to content

Instantly share code, notes, and snippets.

@cleytonmessias
Created May 26, 2016 19:07
Show Gist options
  • Save cleytonmessias/5ad0ee524c2b46922ee385ffde0fdb19 to your computer and use it in GitHub Desktop.
Save cleytonmessias/5ad0ee524c2b46922ee385ffde0fdb19 to your computer and use it in GitHub Desktop.
Extract all tar.gz files
for file in *.tar.gz; do tar -zxf $file; done
#Reference: http://unix.stackexchange.com/questions/19840/extract-multiple-tar-gz-files-with-a-single-tar-call
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment