不解压查看 tar.gz 包的文件列表

通过tar命令备份、解压缩文件,也可在不解压缩文件时查看包内的文件信息。

使用如下参数:

tar -ztvf file.tar.gz

将列出所有包内的文件列表,包括目录

-z, --gzip, --gunzip, --ungzip	filter the archive through gzip
-t, --list	                    list the contents of an archive
-v, --verbose	                 verbosely list files processed
-f, --file=ARCHIVE	            use archive file or device ARCHIVE

以上内容, 转自: https://www.cnblogs.com/0820LL/p/9620158.html


如果想查看文件压缩前后整体大小、压缩率等,可以使用:

gzip -l file.tar.gz