Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有关于执行 gzip 多个文件并同时运行的建议。例子:
file_a.out file_b.out file_c.out file_d.out
gzip 进程
gzip-f file_a.out gzip-f file_b.out gzip-f file_c.out gzip-f file_d.out
与脚本一起运行,有什么建议吗?
谢谢团队:)
使用 GNU 并行。
parallel -j 8 < file.txt
其中 file.txt 包含命令列表
在后台启动它们,然后等待每个完成。
gzip file1 & gzip file2 & gzip file3 & wait