Linux中批量压缩文件夹

把多个文件夹压缩在同一个压缩包 

tar -zcvf  test.tar.gz test1 test2   

 或者:

for i in `find ./* -type d`;do zip $i.zip ./$i/*;done

'find ./* -type d' 表示查找所有文件夹,-type d就表示指定文件夹类型,这种方法是把每个文件夹单独压缩,一个文件夹对应一个压缩包

你可能感兴趣的:(Linux)