Skip to content

Instantly share code, notes, and snippets.

@mpuig
Created September 29, 2012 16:32
Show Gist options
  • Save mpuig/3804536 to your computer and use it in GitHub Desktop.
Save mpuig/3804536 to your computer and use it in GitHub Desktop.
Compress all subdirectories in the current directory, on different "tar" files, one for each subdirectory
find . -mindepth 1 -maxdepth 1 -type d | xargs -I {} tar -cf {}.tar {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment