TIL you can quickly read files from a tar archive with this command:
tar xOf <tar-file> <file-you-want-to-read-here>
This works even if the file is compressed. You can get a list of all the files in the archive by running this:
tar tf <tar-file>
TIL you can quickly read files from a tar archive with this command:
tar xOf <tar-file> <file-you-want-to-read-here>
This works even if the file is compressed. You can get a list of all the files in the archive by running this:
tar tf <tar-file>