手把手教你Linux下的文件管理(二)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-04
ed 5%)
adding: smart.txt (stored 0%)
adding: tar_create.txt (deflated 44%)
adding: tar.txt (deflated 68%)
adding: xplns/ (stored 0%)
adding: xplns/xplns-cat-3.3.1-1.i386.rpm.gz (deflated 0%)
adding: xplns/xplns-elm-3.3.1-1.i386.rpm.gz (deflated 0%)
adding: xplns/xplns-img-3.3.1-1.i386.rpm.gz (deflated 0%)
//再显示当前目录下所有文件,可以发现压缩文件gong.zip已经生成
#ll
总用量 1621
-rwx------1 root root 3301222 10月 15 19:49 gong.zip
drwx------1 root root 4096 10月 15 19:45 gzip
drwx------1 root root 0 10月 12 21:25 smart
-rwx------1 root root 26 10月 13 22:51 smart.txt
-rwx------1 root root 226 10月 13 22:51 tar_create.txt
-rwx------1 root root 7433 10月 13 22:51 tar.txt
drwx------1 root root 4096 10月 13 22:13 xplns
用带-v参数选项可以查看zip文件的内容,这点类似于带t参数选项的tar命令.只不过前者用于显示压缩的zip文件的内容,后者用于显示tar文件的内容.与带t参数选项的tar命令类似,带v参数选项的zip命令实际上并不解压缩文件.用带-v参数选项的zip命令举例如下: //显示当前目录下所有文件,从显示结果可以看出,当前目录下只有一个gong.zip文件 # ll 总用量 1612 -rwx------ 1 root root 3301222 10月 15 19:49 gong.zip //查看gong.zip文件的内容 # zip -v gong.zip zip info: local extra (21 bytes) != central extra (13 bytes): gzip/ zip info: local extra (21 bytes) != central extra (13 bytes): gzip/gong.tar.gz zip info: local extra (21 bytes) != central extra (13 bytes): smart/ zip info: local extra (21 bytes) != central extra (13 bytes): smart.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar_create.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar.txt zip info: local extra (21 bytes) != central extra (13 bytes): xplns/ 用带-d参数选项的zip命令可以从zip压缩文件中删除某个文件,而使用带-m的zip命令可以向zip压缩文件添加某个文件,对带-d和-m参数选项的zip命令举例如下: # zip -v gong.zip //显示压缩文件gong.zip的文件内容 zip info: local extra (21 bytes) != central extra (13 bytes): free.txt zip info: local extra (21 bytes) != central extra (13 bytes): smart.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar_create.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar.txt //删除压缩文件中smart.txt文件 # zip -d gong.zip smart.txt deleting: smart.txt //再显示压缩文件内容,可以发现文件删除成功 # zip -v gong.zip zip info: local extra (21 bytes) != central extra (13 bytes): free.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar_create.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar.txt //向压缩文件中gong.zip中添加rpm_info.txt文件 # zip -m gong.zip ./rpm_info.txt adding: rpm_info.txt (deflated 75%) //再显示压缩文件内容,可以发现文件添加成功 # zip -v gong.zip zip info: local extra (21 bytes) != central extra (13 bytes): free.txt zip info: local extra (21 bytes) != central extra (13 bytes): tar_create.txt zip info: local extra (21 bytes) != central extra |
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Nginx启动脚本(1)下一篇: linux软件源码的编译安装
关于手把手教你Linux下的文件管理(二)的所有评论