0

是否有关于执行 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

与脚本一起运行,有什么建议吗?

谢谢团队:)

4

2 回答 2

2

使用 GNU 并行。

parallel -j 8 < file.txt

其中 file.txt 包含命令列表

于 2013-10-30T11:24:30.747 回答
-1

在后台启动它们,然后等待每个完成。

gzip file1 &
gzip file2 &
gzip file3 &
wait
于 2013-10-30T11:31:15.993 回答