zipinfo命令 – 查看压缩文件信息
zipinfo命令来自英文词组zip information的缩写,其功能是查看压缩文件信息。使用zipinfo命令可以查看zip格式压缩包内的文件列表及详细信息。
语法格式:zipinfo 参数 压缩包
常用参数:
-1 | 只显示文件名 | -s | 显示压缩文件内容 | |
-C | 不区分大小写 | -t | 显示压缩前后大小及压缩率 | |
-h | 只显示压缩文件名 | -T | 显示每个文件的日期时间 | |
-l | 显示原始文件的大小 | -v | 显示执行过程详细信息 | |
-m | 显示每个文件的压缩率 | -x | 不显示符合条件的文件信息 | |
-M | 以分页形式显示内容 | -z | 显示文件注释信息 |
参考示例
显示压缩包内的文件名称及简要属性信息:
[root@linuxcool ~]# zipinfo File.zip Archive: File.zip Zip file size: 1937 bytes, number of entries: 2 -rw------- 3.0 unx 1256 tx defN 23-Dec-14 08:42 anaconda-ks.cfg -rw-r--r-- 3.0 unx 1585 tx defN 23-Dec-14 08:43 initial-setup-ks.cfg 2 files, 2841 bytes uncompressed, 1589 bytes compressed: 44.1%
显示压缩包内的文件名称及详细属性信息:
[root@linuxcool ~]# zipinfo -v File.zip
仅显示压缩包内文件大小及数目信息:
[root@linuxcool ~]# zipinfo -h File.zip Archive: File.zip Zip file size: 1937 bytes, number of entries: 2
仅显示压缩包内的文件最后修改时间及简要属性信息:
[root@linuxcool ~]# zipinfo -T File.zip Archive: File.zip Zip file size: 1937 bytes, number of entries: 2 -rw------- 3.0 unx 1256 tx defN 20231214.084220 anaconda-ks.cfg -rw-r--r-- 3.0 unx 1585 tx defN 20231214.084343 initial-setup-ks.cfg 2 files, 2841 bytes uncompressed, 1589 bytes compressed: 44.1%