How to unzip a zip file from the terminal?
If the unzip command isn’t already installed on your system, then run:
1 | sudo apt-get install unzip |
After installing the unzip utility, if you want to extract to a particular destination folder, you can use:
1 | unzip file.zip -d destination_folder |
If the source and destination directories are the same, you can simply do:
1 | unzip file.zip |
Source: https://askubuntu.com/questions/86849/how-to-unzip-a-zip-file-from-the-terminal
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.