Skip to content

Instantly share code, notes, and snippets.

@atadams
Created January 23, 2013 14:22
Show Gist options
  • Save atadams/4606203 to your computer and use it in GitHub Desktop.
Save atadams/4606203 to your computer and use it in GitHub Desktop.
Terminal: Zip Files in Directory Recursively
for i in `find . -name "*.log"`; do zip -j $i.zip $i;done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment