nl
爲每一個文件添加行號。
概要
1nl [OPTION]... [FILE]...
主要用途
- 將每一個輸入的文件添加行號後發送到標準輸出。
- 當沒有文件或文件爲
-
時,讀取標準輸入 - 處理邏輯頁(logical page)。
選項
1-b, --body-numbering=STYLE 使用STYLE 爲body部分的行附加行號。
2-d, --section-delimiter=CC 使用CC作爲logical page的分隔符。
3-f, --footer-numbering=STYLE 使用STYLE 爲footer部分的行附加行號。
4-h, --header-numbering=STYLE 使用STYLE 爲header部分的行附加行號。
5-i, --line-increment=NUMBER 行號遞增間隔爲NUMBER。
6-l, --join-blank-lines=NUMBER 連續NUMBER行的空行作爲一行處理。
7-n, --number-format=FORMAT 根據FORMAT插入行號。
8-p, --no-renumber 不要在每個部分重置行號。
9-s, --number-separator=STRING 在行號後添加字符串STRING。
10-v, --starting-line-number=NUMBER 每部分的起始行號。
11-w, --number-width=NUMBER 行號寬度爲NUMBER。
12--help 顯示幫助信息並退出。
13--version 顯示版本信息並退出。
14
15
16默認選項爲:-bt -d'\:' -fn -hn -i1 -l1 -nrn -sTAB -v1 -w6
17
18CC是由兩個字符組成的,默認爲\: ,第二個字符如果缺失則默認爲:
19
20STYLE可以爲下列可用值之一:
21
22a 所有行標記行號。
23t 僅爲非空行標記行號。
24n 不標記行號。
25pBRE 符合基礎正則表達式(BRE)的行會標記行號。
26
27FORMAT可以爲下列可用值之一:
28
29ln 左對齊,不會在開始部分補充0以滿足寬度。
30rn 右對齊,不會在開始部分補充0以滿足寬度。
31rz 右對齊,會在開始部分補充0以滿足寬度。
32
33logical page
34三部分組成(header, body, footer)
35起始標記(header \:\:\:, body \:\:, footer \:)
參數
FILE(可選):要處理的文件,可以爲一或多個。
返回值
返回0表示成功,返回非0值表示失敗。
例子
1nl_logicalpage.txt:該文件用於說明nl命令處理邏輯頁,內容如下:
2\:\:\:
3header_1
4\:\:
5body_1
6\:
7footer_1
8\:\:\:
9header_2
10\:\:
11body_2
12\:
13footer_2
1[user2@pc ~]$ nl nl_logicalpage.txt
2
3 header_1
4
5 1 body_1
6
7 footer_1
8
9 header_2
10
11 1 body_2
12
13 footer_2
14
15[user2@pc ~]$ nl -v0 -fa -ha nl_logicalpage.txt
16
17 0 header_1
18
19 1 body_1
20
21 2 footer_1
22
23 0 header_2
24
25 1 body_2
26
27 2 footer_2
28
29[user2@pc ~]$ nl -p -fa -ha nl_logicalpage.txt
30
31 1 header_1
32
33 2 body_1
34
35 3 footer_1
36
37 4 header_2
38
39 5 body_2
40
41 6 footer_2
1nl_normal.txt:該文件用於說明nl命令處理普通文件,內容如下:
2ZhuangZhu-74
32019-11-21
4127.0.0.1
1[user2@pc ~]$ nl nl_normal.txt
2 1 ZhuangZhu-74
3 2 2019-11-21
4 3 127.0.0.1
5
6[user2@pc ~]$ nl -b p'1$' nl_normal.txt
7 ZhuangZhu-74
8 1 2019-11-21
9 2 127.0.0.1
10
11[user2@pc ~]$ nl -b p'^[A-Z]' nl_normal.txt
12 1 ZhuangZhu-74
13 2019-11-21
14 127.0.0.1
注意
- 該命令是
GNU coreutils
包中的命令,相關的幫助信息請查看man -s 1 nl
,info coreutils 'nl invocation'
。
來源:https://github.com/jaywcjlove/linux-command
最後修改於: Wednesday, January 31, 2024
版權申明:
- 未標註來源的內容皆為原創,未經授權請勿轉載(因轉載後排版往往錯亂、內容不可控、無法持續更新等);
- 非營利為目的,演繹本博客任何內容,請以'原文出處'或者'參考鏈接'等方式給出本站相關網頁地址(方便讀者)。