对于并行化 gzip 压缩:
parallel gzip ::: myfile_*
完成这项工作,但如何传递 gzip 选项,例如-r
或-9
我试过parallel gzip -r -9 ::: myfile_*
了parallel gzip ::: 9 r myfile_*
但它不起作用。
当我尝试parallel "gzip -9 -r" ::: myfile_*
我收到此错误消息:
gzip: compressed data not written to a terminal. Use -f to force compression
递归添加目录的-r
开关也不起作用。
……
其他命令类似:如何在使用时传递选项parallel
?