本节要讲的 zip 命令,类似于 Windows 系统中的 winzip 压缩程序,其基本格式如下:[root@localhost ~]#zip [选项] 压缩包名 源文件或源目录列表注意,zip 压缩命令需要手工指定压缩之后的压缩包名,注意写清楚扩展名,以便解压缩时使用。
该命令常用的几个选项及各自的含义如表 1 所示。
表 1 zip 命令常用选项及含义下面给大家举几个例子。
【例 1】zip 命令的基本使用。
[root@localhost ~]# zip ana.zip anaconda-ks.cfgadding: anaconda-ks.cfg (deflated 37%)#压缩[root@localhost ~]# ll ana.zip-rw-r--r-- 1 root root 935 6月 1716:00 ana.zip#压缩文件生成不仅如此,所有的压缩命令都可以同时压缩多个文件,例如:[root@localhost ~]# zip test.zip install.log install.log.syslogadding: install.log (deflated 72%)adding: install.log.syslog (deflated 85%)#同时压缩多个文件到test.zip压缩包中[root@localhost ~]#ll test.zip-rw-r--r-- 1 root root 8368 6月 1716:03 test.zip#压缩文件生成【例 2】使用 zip 命令压缩目录,需要使用“-r”选项,例如:[root@localhost ~]# mkdir dir1#建立测试目录[root@localhost ~]# zip -r dir1.zip dir1adding: dir1/(stored 0%)#压缩目录[root@localhost ~]# ls -dl dir1.zip-rw-r–r– 1 root root 160 6月 1716:22 dir1.zip#压缩文件生成我是大仁笔记,欢迎一起学习交流。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)