Skip to content

Instantly share code, notes, and snippets.

@kaskavalci
Created September 15, 2017 06:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaskavalci/27cab7bde8816d56056b45513abdf105 to your computer and use it in GitHub Desktop.
Save kaskavalci/27cab7bde8816d56056b45513abdf105 to your computer and use it in GitHub Desktop.
Untar all files in a directory to unique directories
# Change file extension if needed
for f in *.tgz ; do mkdir "${f%%.*}" && tar xzf $f -C "${f%%.*}" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment