linux command tar

Purpose

       Learning linux command  tar ,  package and depackage

 

Eevironment

       Ubuntu 16.04 terminal

 【Produce

复制代码

sudo apt install pigz

package:

tar --use-compress-program=pigz -cvpf test.tgz ./test

depackage:

tar --use-compress-program=pigz -xpf test.tgz -C ./test

复制代码
原文地址:https://www.cnblogs.com/lianghong881018/p/12837472.html