压缩文件,保留源文件:
#保留源文件
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
压缩文件,保留源文件:
#保留源文件
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