How to unzip a file using linux Bash

PHOTO EMBED

Fri Sep 16 2022 02:28:46 GMT+0000 (Coordinated Universal Time)

Saved by @DiegoEraso

sudo apt install unzip
unzip -q filename.zip
unzip filename.zip -d /path/to/directory
content_copyCOPY

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/