Answers for "how to open .tar file in windows 10 without winzip"

12

how to unzip Tar file

## Untar files in Current Directory ##
tar -xvf filename.tar.gz

## Untar files in specified Directory ##
tar -xvf filename.tar.gz -C /path_name_for_unzip/

-x : extract
-C : specified directory
-v : Verbosely show the .tar file progress.
-f : filename of archive file
Posted by: Guest on July-29-2020
2

how to open tar.gz file in windows 10

tar -xvzf <filename.tar.gz>
Posted by: Guest on February-20-2021
6

how to unzip using tar

tar -xf archive.tar.gz
Posted by: Guest on March-28-2020
0

tar file windows

Use WinZip to extract
Posted by: Guest on January-26-2022
0

extract tar gz file windows

tar -xvzf C:\PATH\TO\FILE\FILE-NAME.tar.gz -C C:\PATH\TO\FOLDER\EXTRACTION
Posted by: Guest on April-07-2022

Code answers related to "how to open .tar file in windows 10 without winzip"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language