码迷,mamicode.com
首页 > 其他好文 > 详细

压缩和解压缩

时间:2017-04-10 21:19:11      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:.gz   压缩   注释   zip   桌面   cal   local   视频   oca   

 

 

 

[root@localhost ~]# ll
总用量 83856
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[root@localhost ~]# gzip 102                       注释:使用 gzip   压缩102文件
[root@localhost ~]# bzip2 103                     注释:使用 bzip2 压缩103文件
[root@localhost ~]# zip 104.zip 104             注释:使用 zip     压缩104文件
adding: 104 (deflated 99%)                         使用zip压缩文件,源文件不会消失
[root@localhost ~]# xz 105                          注释:使用xz       压缩105文件

[root@localhost ~]# ll
总用量 42404
-rw-r--r--. 1 root root 207425 4月 11 02:35 102.gz   压缩后
-rw-r--r--. 1 root root 62522 4月 11 02:35 103.bz2   压缩后
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104   
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip  压缩后
-rw-r--r--. 1 root root 3600 4月 11 02:34 105.xz      压缩后
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[root@localhost ~]# gzip -d 102.gz              解压102.gz
[root@localhost ~]# bzip2 -d 103.bz2          解压 103.bz2

[root@localhost ~]# xz -d 105.xz                 解压105.xz

[root@localhost ~]# ll
总用量 84060
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[root@localhost ~]# rm -r 104                     删除源文件
rm:是否删除普通文件 "104"?y                      

[root@localhost ~]# ll
总用量 70084
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[root@localhost ~]# unzip 104.zip                           解压104.zip
Archive: 104.zip
inflating: 104
[root@localhost ~]# ll
总用量 84060
-rw-r--r--. 1 root root 14308590 4月 11 02:35 102
-rw-r--r--. 1 root root 14308590 4月 11 02:35 103
-rw-r--r--. 1 root root 14308590 4月 11 02:35 104
-rw-r--r--. 1 root root 207559 4月 11 03:16 104.zip    解压后源文件不会消失
-rw-r--r--. 1 root root 14308590 4月 11 02:34 105
-rw-r--r--. 1 root root 14308590 4月 11 02:34 106
-rw-r--r--. 1 root root 14308590 4月 11 02:33 107
drwxr-xr-x. 2 root root 6 4月 10 19:44 公共
drwxr-xr-x. 2 root root 6 4月 10 19:44 模板
drwxr-xr-x. 2 root root 6 4月 10 19:44 视频
drwxr-xr-x. 2 root root 6 4月 10 19:44 图片
drwxr-xr-x. 2 root root 6 4月 10 19:44 文档
drwxr-xr-x. 2 root root 6 4月 10 19:44 下载
drwxr-xr-x. 2 root root 6 4月 10 19:44 音乐
drwxr-xr-x. 2 root root 6 4月 10 19:44 桌面
[root@localhost ~]#

压缩和解压缩

标签:.gz   压缩   注释   zip   桌面   cal   local   视频   oca   

原文地址:http://www.cnblogs.com/ming01/p/6690854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!