nl常见命令参数

nl命令在linux系统中用来计算文件中行号
-b :指定行号指定的方式,主要有两种:

-b a :表示不论是否为空行,也同样列出行号(类似 cat -n); -b t :如果有空行,空的那一行不要列出行号(默认值);

-n :列出行号表示的方法,主要有三种:

-n ln :行号在萤幕的最左方显示; -n rn :行号在自己栏位的最右方显示,且不加 0 ; -n rz :行号在自己栏位的最右方显示,且加 0 ;

常用的命令展示:

无论空行否都添加行号

1 [root@localhost omc]``# nl -b a last.txt

nl - 图1
空行不显示行号

1 [root@localhost omc]``# nl -b t last.txt

nl - 图2

行号在右

1 [root@localhost omc]``# nl -n rn last.txt

nl - 图3

行号在左

1 [root@localhost omc]``# nl -n ln last.txt

nl - 图4