How to View tar.gz content without Extracting
You have a tar.gz files (lets says it is a server backup files) and want to view the content without extracting it?
You can use 3 commands bellow, tar, vim or less.
[sourcecode]tar -tf filename.tar.gz[/sourcecode]
or
[sourcecode]vim filename.tar.gz[/sourcecode]
or
[sourcecode]less -l filename.tar.gz[/sourcecode]