Unzipping a batch of files

command linezip

When I try

 unzip filename.zip

it works. However, I need to unzip a series of zip files.

Why are:

 find . -name "*.zip" -print0 | xargs -0 unzip

or

 ls *.zip | xargs unzip

not working?

In both cases I get a "caution: filename not matched: " message.

Best Answer

You can issue the command:

$ unzip '*.zip'

Look here for reference.

Related Question