-
-n或-number:由1开始对所有输出的行数编号;
-
-b或—number-nonblank:和-n相似,只不过对于空白行不编号;
-
-s或—squeeze-blank:当遇到有连续两行以上的空白行,就代换为一行的空白行;
-
-A:显示不可打印字符,行尾显示“$”;
-
-e:等价于“-vE”选项;
-
-t:等价于“-vT”选项;
-
文件列表:指定要连接的文件列表。
1
2
3
4
5
6
7
|
[root@moban ~]# cat file
Hello!
What's your name?
I'm studying linux.
|
1
2
3
4
5
6
7
|
[root@moban ~]# cat -n file
1
Hello!
2
3
What's your name?
4
5
6
I'm studying linux.
|
1
2
3
4
5
6
7
|
[root@moban ~]# cat-b file
1
Hello!
2
What's your name?
3
I'm studying linux.
|
1
2
3
4
5
6
|
[root@moban ~]# cat -sn file
1
Hello!
2
3
What's your name?
4
5
I'm studying linux.
|
1
2
3
4
5
6
7
|
[root@moban ~]# cat -A file
Hello!$
$
What's your name?$
$
$
I'm studying linux.$
|