linux下如何解压zip文件
假设/home/user/test/路径下有大量的.zip文件,数量有几千个,怎样通过linux命令批量解压这些文件呢?
------解决方案--------------------zip?用gzip解压吧
写个shell
for file in `ls *.zip`
do
gzip -d $file
done
------解决方案--------------------zip 的话还是用 unzip
Perl code
for file in `ls *.zip`;do unzip $file; done
------解决方案--------------------
简单点
unzip *.zip
------解决方案--------------------
------解决方案--------------------
for i in *.zip
do
unzip $i
done;
------解决方案--------------------