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.
tar -tf filename.tar.gz
or
vim filename.tar.gz
or
less -l filename.tar.gz