Answers for "tar unzip zip file ubuntu"

24

ubuntu unzip zip

unzip file.zip -d destination_folder
Posted by: Guest on February-19-2020
0

how to zip and unzip tar

Compress:
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file

Uncompress:
tar -xzvf archive.tar.gz

Legend:

-c: Create an archive.
-z: Compress the archive with gzip.
-v: Display progress in the terminal while creating the archive, also known as “verbose” mode. The v is always optional in these commands, but it’s helpful.
-f: Allows you to specify the filename of the archive.
-x: extract
Posted by: Guest on January-24-2022
0

unzip a zip file ubuntu

mv gophish*.zip gophish
Posted by: Guest on October-14-2021
0

unzip a zip file ubuntu

nano config.json
Posted by: Guest on October-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language