Linux命令(136)之zcat
linux命令之zcat
1.zcat介绍
linux命令在zcat是用来查看gz结尾的压缩文件。
2.zcat用法
zcat [参数] filename
参数 | 说明 |
-c | 将文件内容写到标准输出 |
-l | 显示压缩包中文件的列表 |
-L | 显示软件许可信息 |
-t | 测试文件的完整性 |
-f | 强制覆盖输出文件和压缩链接 |
3.实例
3.1.将文件内容写到标准输出
命令:
zcat -c aa.txt.gz
[root@centos79 ~]# zcat -c aa.txt.gz
aaaa
aaaa
aaaa
aaaa
aaaa
[root@centos79 ~]#
3.2.显示压缩包中文件的列表
命令:
zcat -l aa.txt.gz
[root@centos79 ~]# zcat -l aa.txt.gz
compressed uncompressed ratio uncompressed_name
35 25 60.0% aa.txt
[root@centos79 ~]#
3.3.显示软件许可信息
命令:
zcat -L aa.txt.gz
[root@centos79 ~]# zcat -L aa.txt.gz
gzip 1.5
Copyright (C) 2007, 2010, 2011 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
[root@centos79 ~]#
3.4.测试文件的完整性
命令:
zcat -t aa.txt.gz
[root@centos79 ~]# zcat -t aa.txt.gz
[root@centos79 ~]#
3.5.查看普通文件中的内容
命令:
zcat -f data.txt
[root@centos79 ~]# zcat -f data.txt
bbbb
[root@centos79 ~]#