Skip to content

Instantly share code, notes, and snippets.

@musichook
Last active November 27, 2021 20:28
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 musichook/fd4e740011a2e38be8a64a7a592d6943 to your computer and use it in GitHub Desktop.
Save musichook/fd4e740011a2e38be8a64a7a592d6943 to your computer and use it in GitHub Desktop.

Unzip all files in a directory

You can get the error caution: filename not matched when trying to unzip all archives at a directory with the command unzip *.zip or similar. Just escape the star symbol:

use

unzip \*.zip

instead of

unzip *.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment