Linux
Linux Tricks and Tips
unzip multiple files in linux or mac os x
0If you’ve tried to unzip a bunch of zip files via the unix command line using a Linux distro or Mac OS X using the following command you may have come across the following.
The command:
unzip *.zip
displays the error:
caution: filename not matched
The easiest way of fixing this is by adding ‘single quotes’ to the file portion of the command, for example:
unzip ‘*.zip’
Which will unzip all of the zip files in the current directory.
Mac OS X users: you can access the unix terminal by running Terminal, an application found in Applications -> Utilities.