Created
June 2, 2020 09:43
-
-
Save nonohry/5008dd5156f52f759a8b008eded8e347 to your computer and use it in GitHub Desktop.
Unzip file on Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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