linux命令-zip压缩unzip解压缩

和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, [n]o, [A]ll, [N]one, [r]ename: y
inflating: 111.txt
replace 234/123.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
inflating: 234/123.txt

上一篇:Android俄罗斯方块AI设计文档


下一篇:Python语言程序设计之三--列表List常见操作和错误总结