和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

 

相关文章:

  • 2022-02-12
猜你喜欢
  • 2022-12-23
  • 2021-11-26
  • 2021-11-29
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
相关资源
相似解决方案