ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

linux 中gzip、bzip2、xz压缩、解压缩

linux 中gzip、bzip2、xz压缩、解压缩

 

001、gzip

[root@PC1 test]# ls
a.txt
[root@PC1 test]# ll -h
total 39M
-rw-r--r--. 1 root root 39M Dec  7 11:28 a.txt
[root@PC1 test]# gzip -c a.txt > a.txt.gz            ## 压缩
[root@PC1 test]# ll -h
total 49M
-rw-r--r--. 1 root root 39M Dec  7 11:28 a.txt
-rw-r--r--. 1 root root 11M Dec  7 11:46 a.txt.gz
[root@PC1 test]# ls
a.txt  a.txt.gz
[root@PC1 test]# gzip -dc a.txt.gz > b.txt           ## 解压
[root@PC1 test]# ls
a.txt  a.txt.gz  b.txt
[root@PC1 test]# ll -h
total 87M
-rw-r--r--. 1 root root 39M Dec  7 11:28 a.txt
-rw-r--r--. 1 root root 11M Dec  7 11:46 a.txt.gz
-rw-r--r--. 1 root root 39M Dec  7 11:46 b.txt

image

 。

 

返回列表