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
.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ğiZip 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ğiAçıklaması şöyle. Açma işlemini gerçekleştirirken dosya isimlerini ekrana yazmaz
Şöyle yaparız.-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.
unzip -q filename.zip
Hiç yorum yok:
Yorum Gönder