GNU/Linux >> Belajar Linux >  >> Linux

Sistem Unix ("unzip archive.zip") Mengekstrak File Zip Secara Diam-diam

man unzip:

   -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.

Dari halaman manual unzip:

-q

melakukan operasi secara diam-diam (-qq =lebih tenang). Biasanya unzip mencetak nama file yang diekstraksi atau diuji, metode ekstraksi, komentar file atau zipfile apa pun yang mungkin disimpan dalam arsip, dan mungkin ringkasan setelah selesai dengan setiap arsip. -q [q ] opsi menekan pencetakan beberapa atau semua pesan ini.

Jadi unzip -qq yourfile.zip itu.


PHP memiliki ekstensi untuk itu

http://php.net/manual/en/book.zip.php

<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
    $zip->extractTo('/my/destination/dir/');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}
?>

Linux
  1. Pelajari Cara Zip dan Unzip File di Linux dan jadilah Master Zip

  2. UNIX ar Contoh:Cara Membuat, Melihat, Mengekstrak, Memodifikasi File Arsip C (*.a)

  3. Bagaimana saya bisa membuat daftar file dalam arsip zip tanpa mendekompresinya?

  1. cetak konten lebih dari satu file dalam arsip zip

  2. Di Linux/Unix, apakah .tar.gz versus .zip penting?

  3. Lihat daftar file dalam arsip ZIP di Linux

  1. Cara Unzip File di Linux (dengan Contoh)

  2. Cara Mengarsipkan File Dan Direktori Di Linux [Bagian 2]

  3. Bagaimana cara zip file dengan batas ukuran?