linux unzip 多个文件夹,Linux下使用unzip命令解压多个文件

Linux下直接使用unzip *.zip解压多个文件会报错

可以使用unzip '*.zip'或者 unzip "*.zip"或者unzip \*.zip命令

或者使用for z in *.zip; do unzip $z; done执行解压

如下可以看到当前目录下有6个zip压缩包文件

[root@autoServer COLLECTION]# ll -s

total 24

4 -rw-r--r--. 1 root root 1681 Sep 11 15:38 00004.zip

4 -rw-r--r--. 1 root root 1325 Sep 11 15:38 00005.zip

4 -rw-r--r--. 1 root root 1540 Sep 11 15:43 00010.zip

4 -rw-r--r--. 1 root root 1392 Sep 11 15:43 00011.zip

4 -rw-r--r--. 1 root root 1541 Sep 11 15:48 00016.zip

4 -rw-r--r--. 1 root root 1390 Sep 11 15:48 00017.zip

使用unzip \*.zip命令进行解压,可以看到6个文件都解压成功了

[root@autoServer COLLECTION]# unzip \*.zip

Archive: 00005.zip

inflating: GAB_ZIP_INDEX.xml

inflating: 15366516000003-BASIC_1004.bcp

Archive: 00010.zip

replace GAB_ZIP_INDEX.xml? [y]es, [n]o, [A]ll, [N]one, [r]ename: n

你可能感兴趣的:(linux,unzip,多个文件夹)