美文网首页生信linux
[pigz] tar.gz 压缩/解压

[pigz] tar.gz 压缩/解压

作者: Silver_42ac | 来源:发表于2022-01-18 16:38 被阅读0次
#目标 result 文件夹
#压缩
tar -chf  - result | pigz -p 16  -k  > result.tar.gz 
#解压,保留原始压缩文件
pigz -p 2 -k -c -d result.tar.gz | tar -xf  -

pigz 参数
-d, --decompress Decompress the compressed input
-p, --processes n Allow up to n compression threads (default is the number of online processors, or 8 if unknown)
-c, --stdout Write all processed output to stdout (won't delete)
-k, --keep Do not delete original file after processing

相关文章

网友评论

    本文标题:[pigz] tar.gz 压缩/解压

    本文链接:https://www.haomeiwen.com/subject/zqwkhrtx.html