Unzip Command Maker ToolA Tool to Extract Files from Compressed Zip Archives
| Command Purpose | Command |
|---|---|
| Unzip a few in the current directory | unzip filename.zip |
| Unzip to the specified directory | unzip filename.zip -d /path/to/dest/ |
| Display the contents of zip file without extraction | unzip -l filename.zip |
| Extract a specific file from zip file | unzip filename.zip file.txt unzip filename.zip file1.txt file2.txt |
| Extract all files by unzipping a file - without prompting | unzip -o filename.zip |
| Without overwriting existing files | unzip -n filename.zip |
| Password-Protected ZIP File | unzip -P password_here filename.zip |