".zip"是 Windows 中最常用的壓縮格式,Linux 也可以正確識(shí)別".zip"格式,這可以方便地和 Windows 系統(tǒng)通用壓縮文件。
".zip"格式文件的壓縮命令就是 zip,其基本信息如下。
命令名稱:zip。
英文原意:package and compress(archive)files。
所在路徑:/usr/bin/zip。
執(zhí)行權(quán)限:所有用戶。
功能描述:壓縮文件或目錄。
命令格式
[root@localhost ~]#zip [選項(xiàng)] 壓縮包名 源文件或源目錄選項(xiàng):
-r:壓縮目錄
zip 壓縮命令需要手工指定壓縮之后的壓縮包名,注意寫清楚擴(kuò)展名,以便解壓縮時(shí)使用。舉個(gè)例子:
[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#壓縮文件生成
所有的壓縮命令都可以同時(shí)壓縮多個(gè)文件,例如:
[root@localhost ~]# zip test.zip install.log install.log.syslogadding: install.log (deflated 72%)
adding: install.log.syslog (deflated 85%)#同時(shí)壓縮多個(gè)文件到test.zip壓縮包中
[root@localhost ~]#ll test.zip
-rw-r--r-- 1 root root 8368 6月 1716:03 test.zip#壓縮文件生成
如果想要壓縮目錄,則需要使用"-r"選項(xiàng),例如:
[root@localhost ~]# mkdir dir1
#建立測(cè)試目錄
[root@localhost ~]# zip -r dir1.zip dir1
adding: dir1/(stored 0%)
#壓縮目錄
[root@localhost ~]# ls -dl dir1.zip
-rw-r--r-- 1 root root 160 6月 1716:22 dir1.zip#壓縮文件生成