解压

zip

unzip test.zip -d ./images

解压文件到指定目录。

zip -q -r images.zip images/*

压缩指定目录为images.zip。(q为静默)

tar

  • 压缩
tar -zcvf 压缩文件名.tar.gz 被压缩文件名
  • 解压缩
tar -zxvf 压缩文件名.tar.gz

静默
tar -xzvf test.tar.gz -C .

posted @ 2021-02-07 12:08  zae  阅读(686)  评论(0编辑  收藏  举报