nl命令讀取 file 參數(缺省情況下標准輸入),計算輸入中的行號,將計算過的行號寫入標准輸出。 其默認的結果與cat -n有點不太一樣, nl 可以將行號做比較多的顯示設計,包括位數與是否自動補齊0等等的功能。
[b] (1)用法:[/b]用法:nl [選項]... [文件]...
[b] (2)功能:[/b]功能: nl命令在linux系統中用來計算文件中行號。nl 可以將輸出的文件內容自動的加上行號!
[b] (3)選項參數:[/b][b] 1) [/b]-b: 指定行號指定的方式,主要有兩種:
-b a: 表示不論是否為空行,也同樣列出行號(類似 cat -n)-b t: 如果有空行,空的那一行不要列出行號(默認值)
[b] 2) [/b]-n: 列出行號表示的方法,主要有三種: -n ln: 行號在螢幕的最左方顯示
-n rn: 行號在自己欄位的最右方顯示,且不加 0 -n rz: 行號在自己欄位的最右方顯示,且加 0
[b] 3) [/b]-w: 行號欄位的占用的位數[b] 4) [/b]-p: 在邏輯定界符處不重新開始計算
[b] (4)實例:[/b] 1)[root@localhost Documents]# nl nl_text1 用nl列出文檔中的內容,文件中的空白行不會加上行號
[root@localhost Documents]# ll 總用量 0 [root@localhost Documents]# cat >nl_text1 <<EOF > I am studing orders of Linux! > I am MenAngel! > > I am 19 years old! > > > I am from AnHui HeFei! > EOF [root@localhost Documents]# nl nl_text1 1 I am studing orders of Linux! 2 I am MenAngel! 3 I am 19 years old! 4 I am from AnHui HeFei!
[root@localhost Documents]# cat -b nl_text1 //效果等於cat -b 1 I am studing orders of Linux! 2 I am MenAngel! 3 I am 19 years old! 4 I am from AnHui HeFei!
2)[root@localhost Documents]# nl -b a nl_text1 用nl命令打開輸出文檔內容,空行也輸出行號!
[root@localhost Documents]# nl -b a nl_text1 1 I am studing orders of Linux! 2 I am MenAngel! 3 4 I am 19 years old! 5 6 7 I am from AnHui HeFei! [root@localhost Documents]# cat -n nl_text1 //與cat -n具有相同的效果 1 I am studing orders of Linux! 2 I am MenAngel! 3 4 I am 19 years old! 5 6 7 I am from AnHui HeFei!
3)[root@localhost Documents]# nl -b a -n rz nl_text1 讓行號前面自動補上0,統一輸出格式
[root@localhost Documents]# nl -b a -n rz nl_text1 000001 I am studing orders of Linux! 000002 I am MenAngel! 000003 000004 I am 19 years old! 000005 000006 000007 I am from AnHui HeFei!4)[root@localhost Documents]# nl -b a -n rz -w 3 nl_text1 nl -b a -n rz命令行號默認為六位,要調整位數可以加上參數-w 3調整為3位。
[root@localhost Documents]# nl -b a -n rz -w 3 nl_text1 001 I am studing orders of Linux! 002 I am MenAngel! 003 004 I am 19 years old! 005 006 007 I am from AnHui HeFei!5)[root@localhost Documents]# nl --help
[root@localhost Documents]# nl --help 用法:nl [選項]... [文件]... Write each FILE to standard output, with line numbers added. With no FILE, or when FILE is -, read standard input. Mandatory arguments to long options are mandatory for short options too. -b, --body-numbering=樣式 使用指定樣式編號文件的正文行目 -d, --section-delimiter=CC 使用指定的CC 分割邏輯頁數 -f, --footer-numbering=樣式 使用指定樣式編號文件的頁腳行目 -h, --header-numbering=樣式 使用指定樣式編號文件的頁眉行目 -i, --page-increment=數值 設置每一行遍歷後的自動遞增值 -l, --join-blank-lines=數值 設置數值為多少的若干空行被視作一行 -n, --number-format=格式 根據指定格式插入行號 -p, --no-renumber 在邏輯頁數切換時不將行號值復位 -s, --number-separator=字符串 可能的話在行號後添加字符串 -v, --starting-line-number=數字 每個邏輯頁上的第一行的行號 -w, --number-width=數字 為行號使用指定的欄數 --help 顯示此幫助信息並退出 --version 顯示版本信息並退出 默認的選項設置是-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn。CC 是用於分隔 邏輯頁數的兩個分界符,其中缺失的第二個字符暗含了":",如果您要指定"\", 請輸入"\\"。可用的樣式如下: a 對所有行編號 t 對非空行編號 n 不編行號 pBRE 只對符合正則表達式BRE 的行編號 FORMAT 是下列之一: ln 左對齊,空格不用0 填充 rn 右對齊,空格不用0 填充 rz 右對齊,空格用0 填充 GNU coreutils online help: <http://www.gnu.org/software/coreutils/> 請向<http://translationproject.org/team/zh_CN.html> 報告nl 的翻譯錯誤 要獲取完整文檔,請運行:info coreutils 'nl invocation'6)[root@localhost Documents]# nl --version
[root@localhost Documents]# nl --version nl (GNU coreutils) 8.22 Copyright (C) 2013 Free Software Foundation, Inc. 許可證:GPLv3+:GNU 通用公共許可證第3 版或更新版本<http://gnu.org/licenses/gpl.html>。 本軟件是自由軟件:您可以自由修改和重新發布它。 在法律范圍內沒有其他保證。 由Scott Bartram 和David MacKenzie 編寫。[b] (5)其他:[/b]
功能的詳細介紹:在輸出中,nl 命令根據您在命令行中指定的標志來計算左邊的行。 輸入文本必須寫在邏輯頁中。每個邏輯頁有頭、主體和頁腳節(可以有空節)。 除非使用 -p 標志,nl 命令在每個邏輯頁開始的地方重新設置行號。
可以單獨為頭、主體和頁腳節設置行計算標志(例如,頭和頁腳行可以被計算然而文本行不能)。