How to unzip a file using linux Bash
Fri Sep 16 2022 02:28:46 GMT+0000 (Coordinated Universal Time)
Saved by @DiegoEraso
1) By default, unzip prints the names of all the files it’s extracting and a summary when the extraction is completed.
Use the -q switch to suppress the printing of these messages.
2) To unzip a ZIP file to a different directory than the current one, use the -d switch
https://linuxize.com/post/how-to-unzip-files-in-linux/
Comments