20 Ekim 2019 Pazar

unzip komutu

Giriş
.zip uzantılı dosyası oluşturup açmak içindir. .gz uzantılı dosyalar için gunzip komutu kullanılır. Eğer unzip komutu kurulu değilse, alternatif olarak şöyle yapabiliriz
jar xvf file.zip 
-o seçeneği
Zip dosyasının açılacağı dizini belirtir.

Örnek
Şöyle yaparız
PACKAGE_PATH="/opt/installtools/"
PACKAGE_FILE="foo.zip"

unzip -o $PACKAGE_FILE -d $PACKAGE_PATH; 
-q seçeneği
Açıklaması şöyle. Açma işlemini gerçekleştirirken dosya isimlerini ekrana yazmaz
-q     perform  operations  quietly  (-qq  = even quieter).  Ordinarily
       unzip prints the names of the files it's extracting or  testing,
       the extraction methods, any file or zipfile comments that may be
       stored in the archive, and possibly a summary when finished with
       each  archive.   The -q[q] options suppress the printing of some
       or all of these messages.
Şöyle yaparız.
unzip -q filename.zip

Hiç yorum yok:

Yorum Gönder