中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

每天回顧linux命令(unzip)

時(shí)間:2019-08-11

linux 關(guān)機(jī)命令_linux命令_linux vi命令

unzip命令

unzip命令用于解壓由zip命令壓縮的“.zip”壓縮包。

語(yǔ)法

unzip (選項(xiàng)) (參數(shù))

選項(xiàng)

-c:將解壓的結(jié)果顯示到屏幕上,并對(duì)字符做適當(dāng)?shù)霓D(zhuǎn)換;

linux vi命令_linux 關(guān)機(jī)命令_linux命令

root@35d388cf883b:/home/wzm/testgzip/zip# cat testzip
123
abc
root@35d388cf883b:/home/wzm/testgzip/zip# zip test.zip testzip
  adding: testzip (stored 0%)
root@35d388cf883b:/home/wzm/testgzip/zip# unzip -c test.zip
Archive:  test.zip
 extracting: testzip
123
abc
root@35d388cf883b:/home/wzm/testgzip/zip#

-f:更新現(xiàn)有的文件。

-l:顯示壓縮文件內(nèi)所包含的文件。

root@35d388cf883b:/home/wzm/testgzip/ret# unzip -l test.zip
Archive:  test.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  2017-11-21 03:19   zip/
    57764  2017-11-20 01:26   zip/redis.conf
        0  2017-11-21 02:25   zip/addfile.txt
        8  2017-11-21 02:11   zip/.testzip
---------                     -------
    57772                     4 files
root@35d388cf883b:/home/wzm/testgzip/ret#

-p:和-c參數(shù)類似linux命令,會(huì)將解壓的結(jié)果顯示到屏幕上,但不會(huì)執(zhí)行任何的轉(zhuǎn)換;

-t:檢查壓縮文件是否正確。

linux 關(guān)機(jī)命令_linux命令_linux vi命令

root@35d388cf883b:/home/wzm/testgzip/ret# unzip -t test.zip
Archive:  test.zip
    testing: zip/                     OK
    testing: zip/redis.conf           OK
    testing: zip/addfile.txt          OK
    testing: zip/.testzip             OK
No errors detected in compressed data of test.zip.
root@35d388cf883b:/home/wzm/testgzip/ret#

-u:和-f參數(shù)類似linux命令,但是除了更新現(xiàn)有的文件外,也會(huì)將壓縮文件中的其他文件壓縮到目錄中;

root@35d388cf883b:/home/wzm/testgzip/ret# unzip -u test.zip
Archive:  test.zip
   creating: zip/
  inflating: zip/redis.conf
 extracting: zip/addfile.txt
 extracting: zip/.testzip
root@35d388cf883b:/home/wzm/testgzip/ret# ls
test.zip  zip
root@35d388cf883b:/home/wzm/testgzip/ret#
 上一個(gè)教程:Linux服務(wù)器命令