Skip to content

Instantly share code, notes, and snippets.

@dennisliuu
Created November 22, 2019 12:32
Show Gist options
  • Save dennisliuu/b300ec41cfc8561aef05ae1e9d2b649d to your computer and use it in GitHub Desktop.
Save dennisliuu/b300ec41cfc8561aef05ae1e9d2b649d to your computer and use it in GitHub Desktop.
Fast unzip file into different folder
find . -name "*.zip" | xargs -P 5 -I fileName sh -c 'unzip -o -d "$(dirname "fileName")/$(basename -s .zip "fileName")" "fileName"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment