[hot]: Unzip Command In Unix
unzip archive.zip -d /path/to/destination
💡
# Ubuntu/Debian sudo apt install unzip sudo yum install unzip macOS (already installed) unzip command in unix
unzip -q archive.zip
The unzip command extracts files from ZIP archives. Here's everything you need to know: unzip [options] file.zip Most Common Examples 1. Extract a ZIP file to current directory unzip archive
unzip -l archive.zip
unzip -t archive.zip 💡
