1、cat 显示文件连接文件内容的工具;
cat 是一个文本文件查看和连接工具。查看一个文件的内容,用cat比较简单,就是cat 后面直接接文件名。
比如:
de>[root@localhost ~]# cat /etc/fstabde>
为了便于新手弟兄灵活掌握这个工具,我们多说一点常用的参数;
1.0 cat 语法结构;
de>cat [选项] [文件]...de>
选项-A, --show-all 等价于 -vET-b, --number-nonblank 对非空输出行编号-e 等价于 -vE-E, --show-ends 在每行结束处显示 $-n, --number 对输出的所有行编号-s, --squeeze-blank 不输出多行空行-t 与 -vT 等价-T, --show-tabs 将跳 字符显示为 ^I-u (被忽略)-v, --show-nonprinting 使用 ^ 和 M- 引用,除了 LFD 和 TAB 之外--help 显示此帮助信息并离开
1.1 cat 查看文件内容实例;
de>[root@localhost ~]# cat /etc/profile 注:查看/etc/目录下的profile文件内容;[root@localhost ~]# cat -b /etc/fstab 注:查看/etc/目录下的profile内容,并且对非空白行进行编号,行号从1开始;[root@localhost ~]# cat -n /etc/profile 注:对/etc目录中的profile的所有的行(包括空白行)进行编号输出显示;[root@localhost ~]# cat -E /etc/profile 注:查看/etc/下的profile内容,并且在每行的结尾处附加$符号;de>
cat 加参数-n 和nl工具差不多,文件内容输出的同时,都会在每行前面加上行号;
de>[root@localhost ~]# cat -n /etc/profile[root@localhost ~]# nl /etc/profilede>
cat 可以同时显示多个文件的内容,比如我们可以在一个cat命令上同时显示两个文件的内容;
de>[root@localhost ~]# cat /etc/fstab /etc/profilede>
cat 对于内容极大的文件来说,可以通过管道|传送到more 工具,然后一页一页的查看;
de>[root@localhost ~]# cat /etc/fstab /etc/profile | morede>
cat 把一个或多个已存在的文件内容,追加到一个已存在的文件中
de>[root@localhost ~]# cat sir00.txtlinuxsir.org forever[root@localhost ~]# cat sir01.txt sir02.txt sir03.txt >> sir00.txt