cat命令
功能说明
cat命令用来将文件的内容输出到标准输出,还可以将几个文件合并起来显示,用法如下:
cat [OPTION]... [FILE]... |
主要功能
-
一次显示整个文件:cat filename
-
从键盘创建一个文件:cat > filename 只能创建新文件,不能编辑已有文件
-
将几个文件合并为一个文件:cat file1 file2 > file
命令参数
选项 | 含义 |
-A | 将文件中的制表符显示为“^I”,同时在每行的末尾显示一个$符号 |
-b | 将文件中的所有非空行按顺序编号,编号从1开始 |
-n | 显示行数 |
-s | 有连续两行以上的空白行,就代换为一行的空白行 |
示例
使用-Ab查看dns..文件内容,对非空行进行编号输出,制表符显示为“^I”,末尾显示一个$
[root@c7 shell]# cat -Ab dnspod_disk_usage_agent.sh 1 #!/bin/bash$ $ 2 # M-eM-^OM-^BM-fM-^UM-0M-fM-#M-^@M-fM-^_M-%$ 3 if [ ! -n "$1" ] ;then$ 4 echo ":( API_KEY is needed!"$ ..... |
把二个文件的内容合并输出到file3.txt
[root@c7 shell]# cat file1.txt This is file1.txt [root@c7 shell]# cat file2.txt This is file2.txt [root@c7 shell]# cat file1.txt file2.txt >file3.txt [root@c7 shell]# cat file3.txt This is file1.txt This is file2.txt |
-ns禁止显示多个空白行
[root@c7 shell]# cat foo.txt 1 2 8 [root@c7 shell]# cat -ns foo.txt 1 1 2 2 3 4 8 |
本文转自cix123 51CTO博客,原文链接:http://blog.51cto.com/zhaodongwei/1759010,如需转载请自行联系原作者