您的位置:首页 > 运维架构 > Linux

linux命令-zip压缩unzip解压缩

2015-11-08 16:59 609 查看
和windows的zip的压缩文件是通用的 可以解压缩

压缩文件

///////////////////////////////////////////////////////////

[root@wangshaojun ~]# zip 111.txt.zip 111.txt

adding: 111.txt (deflated 78%)
[root@wangshaojun ~]# ls
111.txt 1.txt
111.txt.zip 222

////////////////////////////////////////////////////////////////////////////////

[root@wangshaojun ~]# rm -fvr 111.txt ////删除文件
已删除"111.txt"
[root@wangshaojun ~]# unzip 111.txt.zip
Archive: 111.txt.zip
inflating: 111.txt
[root@wangshaojun ~]# ls ////原文件还在
111.txt 1.txt
111.txt.zip

/////////////////////////////////////////////////////////////////////////////////

压缩目录

[root@wangshaojun ~]# zip -r 1.zip 111.txt 222 234
adding: 111.txt (deflated 78%)
adding: 222/ (stored 0%)
adding: 234/ (stored 0%)
adding: 234/123.txt (deflated 73%)

解压缩目录
[root@wangshaojun ~]# unzip 1.zip
Archive: 1.zip
replace 111.txt? [y]es,
o, [A]ll,
one, [r]ename: y
inflating: 111.txt
replace 234/123.txt? [y]es,
o, [A]ll,
one, [r]ename: y
inflating: 234/123.txt
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: