gzipping up a set of directories and creating a tar compressed file

后端 未结 5 1513
孤独总比滥情好
孤独总比滥情好 2020-12-29 07:26

My bash fu is not what it should be.

I want to create a little batch script which will copy a list of directories into a new zip file.

There are (at least) t

5条回答
  •  天涯浪人
    2020-12-29 08:17

    In case, you are looking for compressing a directory, the following command can help.

    pbzip2 compresses directories using parallel implementation

    tar cf  --use-compress-prog=pbzip2 
    

提交回复
热议问题