2011/07/07

Unzip all zip files in a directory

When you gonna to unzip all file under same directory with following command:

[root@demo ~]# unzip *.zip

It Won't Work!

Try this:

 [root@demo ~]# unzip \*.zip

Also,verify all the Zip file before extract :

 [root@demo ~]# unzip -t \*.zip | grep error