cat 也是Linux中使用最多的命令之一了,主要用于查看内容并不是很长的文件,如果文章内容很长的话,请参考more
1.命令格式:
cat [options] file1 file2 file3 ...
2.常用参数
cat -s file # 压缩文件中多余的空行
cat -n file # 在每一行输出的内容前加上行号
cat -b file # 在每一个不是空行前加上 行号
cat -T file # 将内容中的制表符显示成 ^I
eg:
$ cat file
line 1
line2
line3
$ cat -s file
line 1
line 2
line 3
$ cat -n file
1 line 1
2
3
4 line 2
5
6
7 line 3
$ cat -b file
1 line 1
2 line 2
3 line 3
或许你还想看分栏内容:Linux command line