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';
}
?>
Mengubah baris terpisah menjadi daftar yang dipisahkan koma dengan entri yang dikutip
Nama pengguna dan kata sandi di baris perintah dengan sshfs