You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
3.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **zip**
## 说明
**zip命令** 可以用来解压缩文件或者对文件进行打包操作。zip是个使用广泛的压缩程序文件经它压缩后会另外产生具有“.zip”扩展名的压缩文件
## 选项
```markdown
-A调整可执行的自动解压缩文件
-b<工作目录>:指定暂时存放文件的目录
-c替每个被压缩的文件加上注释
-d从压缩文件内删除指定的文件
-D压缩文件内不建立目录名称
-f此参数的效果和指定“-u”参数类似但不仅更新既有文件如果某些文件原本不存在于压缩文件内使用本参数会一并将其加入压缩文件中
-F尝试修复已损坏的压缩文件
-g将文件压缩后附加在已有的压缩文件之后而非另行建立新的压缩文件
-h在线帮助
-i<范本样式>:只压缩符合条件的文件
-j只保存文件名称及其内容而不存放任何目录名称
-J删除压缩文件前面不必要的数据
-k使用MS-DOS兼容格式的文件名称
-l压缩文件时把LF字符置换成LF+CR字符
-ll压缩文件时把LF+cp字符置换成LF字符
-L显示版权信息
-m将文件压缩并加入压缩文件后删除原始文件即把文件移到压缩文件中
-n<字尾字符串>:不压缩具有特定字尾字符串的文件
-o以压缩文件内拥有最新更改时间的文件为准将压缩文件的更改时间设成和该文件相同
-q不显示指令执行过程
-r递归处理将指定目录下的所有文件和子目录一并处理
-S包含系统和隐藏文件
-t<日期时间>:把压缩文件的日期设成指定的日期
-T检查备份文件内的每个文件是否正确无误
-u更换较新的文件到压缩文件内
-v显示指令执行过程或显示版本信息
-V保存VMS操作系统的文件属性
-w在文件名称里假如版本编号本参数仅在VMS操作系统下有效
-x<范本样式>:压缩时排除符合条件的文件
-X不保存额外的文件属性
-y直接保存符号连接而非该链接所指向的文件本参数仅在UNIX之类的系统下有效
-z替压缩文件加上注释
-$:保存第一个被压缩文件所在磁盘的卷册名称
-<压缩效率>压缩效率是一个介于1~9的数值
zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list]
The default action is to add or replace zipfile entries from list, which
can include the special name - to compress standard input.
If zipfile and list are omitted, zip compresses stdin to stdout.
-f freshen: only changed files -u update: only changed or new files
-d delete entries in zipfile -m move into zipfile (delete OS files)
-r recurse into directories -j junk (don't record) directory names
-0 store only -l convert LF to CR LF (-ll CR LF to LF)
-1 compress faster -9 compress better
-q quiet operation -v verbose operation/print version info
-c add one-line comments -z add zipfile comment
-@ read names from stdin -o make zipfile as old as latest entry
-x exclude the following names -i include only the following names
-F fix zipfile (-FF try harder) -D do not add directory entries
-A adjust self-extracting exe -J junk zipfile prefix (unzipsfx)
-T test zipfile integrity -X eXclude eXtra file attributes
-y store symbolic links as the link instead of the referenced file
-e encrypt -n don't compress these suffixes
-h2 show more help
```
## 实例
```bash
yum install -y unzip zip # yum安装
zip -q -r html.zip /home/Blinux/html # 将/home/Blinux/html/目录下所有文件和文件夹打包到当前目录下的html.zip
```