如果您使用的是Linux,则可以使用GNU的xargs启动与内核一样多的进程。
CORES=$(grep -c '^processor' /proc/cpuinfo)find /source -type f -print0 | xargs -0 -n 1 -P $CORES gzip -9
- find -print0 / xargs -0保护文件名中的空格
- xargs -n 1表示每个文件一个gzip进程
- xargs -P指定作业数
- gzip -9表示最大压缩
欢迎分享,转载请注明来源:内存溢出
如果您使用的是Linux,则可以使用GNU的xargs启动与内核一样多的进程。
CORES=$(grep -c '^processor' /proc/cpuinfo)find /source -type f -print0 | xargs -0 -n 1 -P $CORES gzip -9
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)