当前位置:   article > 正文

Linux之zip命令_linux zip压缩命令

linux zip压缩命令
  • 命令概述

zip 命令用于压缩文件;

  • 命令语法
zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list]
  • 命令参数
  • -b

    指定存放文件的目录;

    -d

    删除压缩文件内指定的文件;

    -f

    更新压缩包的文件;

    -m

    将文件压缩并加入压缩文件后,删除原始文件;

    -q

    不显示执行过程;

    -r

    递归处理,将指定目录下的所有文件和子目录一并处理;

    -v

    显示指令执行过程或显示版本信息(默认选项);

    -sf

    显示文件;

  • 命令示例

1、zip test1.zip test1.txt 压缩一个名为test.zip的文件;

  1. [root@localhost test]# zip test1.zip test1.txt
  2. adding: test1.txt (deflated 31%)
  3. [root@localhost test]# ll
  4. total 20
  5. -rw-r--r-- 1 root root 13 Jul 16 14:15 test1.txt
  6. -rw-r--r-- 1 root root 177 Jul 17 14:01 test1.zip

 2、zip -r test2.zip test2 -r 表示将指定目录下的所有文件和子目录一并处理;

  1. [root@localhost test]# zip test2.zip test2 --不加r,压缩文件夹
  2. adding: test2/ (stored 0%)
  3. [root@localhost test]# zip -sf test2.zip --只对文件夹压缩
  4. Archive contains:
  5. test2/
  6. Total 1 entries (0 bytes)
  7. [root@localhost test]# zip -r test2.zip test2 --加r,压缩文件夹
  8. updating: test2/ (stored 0%)
  9. adding: test2/test1.txt (deflated 31%)
  10. [root@localhost test]# zip -sf test2.zip --指定目录下的所有文件和子目录一并处理
  11. Archive contains:
  12. test2/
  13. test2/test1.txt
  14. Total 1 entries (89 bytes)

3、zip -sf test2.zip -sf 表示查看压缩内的文件(zipinfo -1 test2.zip 效果一样);

  1. [root@localhost test]# zip -sf test2.zip --查看压缩包内的文件
  2. Archive contains:
  3. test2/
  4. test2/test1.txt
  5. Total 1 entries (89 bytes)

4、zip -d test2.zip test2/test1.txt -d 表示删除压缩文件内指定的文件(或者当压缩是目录时,指定目录下的文件);

  1. [root@localhost test]# zip -d test2.zip test2/test1.txt --加-d 删除压缩内的文件
  2. deleting: test2/test1.txt

5、zip -q test4.zip test4.txt -q 表示压缩文件或文件夹不显示执行过程;

  1. [root@localhost test]# zip -q test4.zip test4.txt -- 加-q 不显示执行过程
  2. [root@localhost test]# ll
  3. total 28
  4. -rw-r--r-- 1 root root 0 Jul 16 14:25 test4.txt
  5. -rw-r--r-- 1 root root 168 Jul 17 14:25 test4.zip

6、zip -m test5.zip test5.txt -m 表示将文件压缩并加入压缩文件后,删除原始文件(zip -rm test5.zip test5 对文件压缩后删除需要加 -rm );

  1. [root@localhost test]# ll
  2. -rw-r--r-- 1 root root 50 Jul 16 14:50 test5.txt
  3. [root@localhost test]# zip -m test5.zip test5.txt --加-m 加入压缩文件后,删除原始文件;
  4. adding: test5.txt (deflated 4%)
  5. [root@localhost test]# ll
  6. -rw-r--r-- 1 root root 216 Jul 17 14:28 test5.zip
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/159481
推荐阅读
相关标签
  

闽ICP备14008679号