欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gzip解压缩语法解析

程序员文章站 2024-03-14 09:08:58
...

压缩文件,保留源文件:

#保留源文件
gzip -c test>test.gz

解压文件,保留源文件:

gzip -dc test.gz>test

gzip说明文档:

Usage: gzip [OPTION]... [FILE]...
Compress or uncompress FILEs (by default, compress FILES in-place).
Mandatory arguments to long options are mandatory for short options too.
  -c, --stdout      write on standard output, keep original files unchanged
  					#写入标准输出,保留源文件不变
  -d, --decompress  decompress
  					#解压
  -f, --force       force overwrite of output file and compress links
  					#强制覆盖输出文件并压缩链接
  -h, --help        give this help
  					#显示帮助文档
  -l, --list        list compressed file contents
  					#列出已压缩的文件
  -L, --license     display software license
  					#显示软件许可证
  -n, --no-name     do not save or restore the original name and time stamp
  					#不保存或者存储原始文件名字和时间戳
  -N, --name        save or restore the original name and time stamp
  					#保存或者存储原始文件名字和时间戳
  -q, --quiet       suppress all warnings
  					#不现实警告
  -r, --recursive   operate recursively on directories
  					#在目录上递归操作
  -S, --suffix=SUF  use suffix SUF on compressed files
  					#对压缩文件使用后缀SUF
  -t, --test        test compressed file integrity
  					#测试压缩文件的完整性
  -v, --verbose     verbose mode
  					#显示命令执行时的具体的步骤
  -V, --version     display version number
  					#显示版本号
  -1, --fast        compress faster
  					#快速压缩
  -9, --best        compress better
  					#最好压缩
    --rsyncable   Make rsync-friendly archive
With no FILE, or when FILE is -, read standard input.
Report bugs to <[email protected]>.
相关标签: Linux linux