Skip to content

Instantly share code, notes, and snippets.

@randerzander
Created April 19, 2015 17:35
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 randerzander/04fbad2856dc78c7fb26 to your computer and use it in GitHub Desktop.
Save randerzander/04fbad2856dc78c7fb26 to your computer and use it in GitHub Desktop.
tar and gzip everything in a directory
DIR=$1
cd $DIR
for file in *
do
tar -czvf $file.tgz $file/
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment