Skip to content

Instantly share code, notes, and snippets.

@mortenjohs
Created November 16, 2022 09:39
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 mortenjohs/6ca0d62c87cbdde72bb2e2487a06b336 to your computer and use it in GitHub Desktop.
Save mortenjohs/6ca0d62c87cbdde72bb2e2487a06b336 to your computer and use it in GitHub Desktop.
Extract all zip files in folder into folders with the same name as zip files...
for i in *.zip; do unzip "$i" -d "${i%%.zip}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment