How to run unzip silently in terminal

command lineterminalzip

I have a lot of Zip archives that I want to unpack in a script. Is there any way to run them silently?

Here is what I have:

bash> unzip  02b852e3571e46f25fdfc79f43ceb726ddff9ba7.zip 
Archive:  02b852e3571e46f25fdfc79f43ceb726ddff9ba7.zip
02b852e3571e46f25fdfc79f43ceb726ddff9ba7
  inflating: .editorconfig           
  inflating: .gitattributes      
bash>  

Here is what I want:

bash> unzip <something to silence zip> MyArchive.zip      
bash>  

Best Answer

As stated in the manual, -q (quiet) or -qq (even quieter).

unzip -qq filename