How to view the contents of tar.gz file
To view the contents of tar.gz file, run tar tf FILE.tar.gz -f, –file=ARCHIVE use archive file or device ARCHIVE -t, –list list the contents of an archive
To view the contents of tar.gz file, run tar tf FILE.tar.gz -f, –file=ARCHIVE use archive file or device ARCHIVE -t, –list list the contents of an archive
I wanted to make a tar of a folder on a remote server. But the server don’t have much disk space left, so the tar operation failed. The server had no rsync installed to copy over the folder to another server. To save generated tar file on another server, i used command tar zcvf – … Read more