Skip to content

Instantly share code, notes, and snippets.

@csu
Created October 3, 2015 19:49
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 csu/99ba5c637cb40ff50f90 to your computer and use it in GitHub Desktop.
Save csu/99ba5c637cb40ff50f90 to your computer and use it in GitHub Desktop.
recursively unzip all zip archives in a directory and its subdirectories
find . -name "*.zip" | while read filename; do unzip -o -d "`dirname "$filename"`" "$filename"; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment