Linux nl命令详解程序员

nl常见命令参数

nl命令在linux系统中用来计算文件中行号

-b  :指定行号指定的方式,主要有两种:

-b a :表示不论是否为空行,也同样列出行号(类似 cat -n);

-b t :如果有空行,空的那一行不要列出行号(默认值);

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

-n ln :行号在萤幕的最左方显示;

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

-n rz :行号在自己栏位的最右方显示,且加 0 ;

 

常用的命令展示:

无论空行否都添加行号

[[email protected] omc]# nl -b a last.txt  

image

空行不显示行号

[[email protected] omc]# nl -b t last.txt  

image

 

行号在右

[[email protected] omc]# nl -n rn last.txt 

image

 

行号在左

[[email protected] omc]# nl -n ln last.txt 

image

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/2946.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论