Here are two ways to decompress from the terminal in Linux:
Using tar to decompress from terminal
tar -zxvf archive.tar.gz
Since -z is using gzip, this command is the same as:
Using gunzip to decompress
gunzip < archive.tar.gz | tar -xv
Here are two ways to decompress from the terminal in Linux:
tar -zxvf archive.tar.gz
Since -z is using gzip, this command is the same as:
gunzip < archive.tar.gz | tar -xv
0 Comments