Linux Decompress .tgz or .tar.gz files

UNIX decompress tgz / tar.gz file

Type the following command:

$ gzip -dc filename.tgz | tar xf - 
$ gzip -dc filename.tar.gz | tar xf -