https://my.oschina.net/anlve/blog/803762
https://peazip.github.io/peazip-compression-benchmark.html
Ubuntu系统中,使用 zip \ rar \ 7z 命令打包dir1 dir2 dir3 三个含有图片和网页的文件夹,三者总和大约480M
zip \ rar \ 7z 命令都是不压缩仅仅打包存储的方式打包成ZIP文件, 而且三者都禁止打印回显消息
就速度而言,7z ≈ rar > zip
time zip -r -0 -q zip.zip dir1 dir2 dir3
real 0m2.219s
time rar a -m0 -inul rar.zip dir1 dir2 dir3
real 0m1.428s
time 7z a -mx0 -bb0 -bd -tzip -r 7z.zip dir1 dir2 dir3
real 0m1.129s
=======================================
在 Linux 中,7z 命令的后面加上下面两行的任意一行则不打印回显信息
| tail -1 # 打印最后一行
> /dev/null 2>&1
在 windows 中,7z 命令的后面加上 >nul 则不显示回显信息。
找到 WINDOWS用的 tail.exe