Answers for "wsl extract tar.gz"

7

linux unpack tar.gz file

tar -zxvf file_name.tar.gz
Posted by: Guest on January-26-2021
8

untar tar.gz

tar -xzf file.tar.gz
Posted by: Guest on June-26-2020
0

extract tar.gz Ubuntu terminal

cd ~/Downloads/archive.tar.gz #first navigate to file location
tar -xzvf archive.tar.gz -C /path/to/new/directory/ 
#-C flag will change the extraction to a new directory.
#remove -C if you want to extract it to current location.
Posted by: Guest on June-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language