001、压缩保留源文件
[root@PC1 test]# ls a.txt [root@PC1 test]# gzip -c a.txt > a.txt.gz ## 压缩并保留源文件 [root@PC1 test]# ls a.txt a.txt.gz
002、解压缩保留源文件
[root@PC1 test]# ls a.txt.gz [root@PC1 test]# gunzip -c a.txt.gz > a.txt ## 解压缩并保留源文件 [root@PC1 test]# ls a.txt a.txt.gz
标签:PC1,gz,源文件,linux,test,txt,root From: https://www.cnblogs.com/liujiaxin2018/p/16964266.html