Skip to content

Instantly share code, notes, and snippets.

@nonohry
Created June 2, 2020 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nonohry/5008dd5156f52f759a8b008eded8e347 to your computer and use it in GitHub Desktop.
Save nonohry/5008dd5156f52f759a8b008eded8e347 to your computer and use it in GitHub Desktop.
Unzip file on Terminal
If the unzip command isn't already installed on your system, then run:
```
sudo apt-get install unzip
```
After installing the unzip utility, if you want to extract to a particular destination folder, you can use:
```
unzip file.zip -d destination_folder
```
If the source and destination directories are the same, you can simply do:
```
unzip file.zip
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment