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