nl
rose1 发表于 2020-10-19 09:10浏览次数:
在类似Unix的操作系统上,nl命令对文件中的行进行编号。
本文档介绍nl的GNU / Linux版本。
On Unix-like operating systems, the nl command numbers the lines in a file.
This document describes the GNU/Linux version of nl.
目录:
1 nl 运行系统环境
2 nl 语法
3 nl 例子
nl 运行系统环境
nl 语法
nl [OPTION]... [FILE]...
选件
-b, --body-numbering=样式
|
使用STYLE为身体线条编号
|
-d, --section-delimiter=CC
|
使用CC分隔逻辑页面
|
-f, --footer-numbering=样式
|
使用样式为页脚行编号
|
-h, --header-numbering=样式
|
使用STYLE为标题行编号
|
-i, --line-increment=NUMBER
|
每行的行号递增
|
-l, --join-blank-lines=NUMBER
|
一组NUMBER个空行计为一个
|
-n, --number-format=格式
|
根据FORMAT插入行号
|
-p, --no-renumber
|
不要在逻辑页面上重置行号
|
-s, --number-separator=STRING
|
在(可能的)行号后添加STRING
|
-v, --starting-line-number=NUMBER
|
每个逻辑页面上的第一行号
|
-w, --number-width=NUMBER
|
使用NUMBER列作为行号
|
--help
|
显示帮助并退出
|
--version
|
显示版本信息并退出
|
默认情况下,nl选择-v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn。CC是用于分隔逻辑页面的两个定界符。如果丢失一个第二字符意味着冒号(:)。
对于反斜杠(\),两个反斜杠(\\)。
样式是以下之一:
a
|
编号所有行
|
t
|
仅编号非空行
|
n
|
没有行数
|
pBRE
|
号仅包含用于基本匹配的行正则表达式,BRE
|
FORMAT是以下之一:
ln
|
左对齐,无前导零
|
rn
|
右对齐,没有前导零
|
rz
|
右对齐,前导零
|
nl [OPTION]... [FILE]...
Options
-b, --body-numbering=STYLE
|
use STYLE for numbering body lines
|
-d, --section-delimiter=CC
|
use CC for separating logical pages
|
-f, --footer-numbering=STYLE
|
use STYLE for numbering footer lines
|
-h, --header-numbering=STYLE
|
use STYLE for numbering header lines
|
-i, --line-increment=NUMBER
|
line number increment at each line
|
-l, --join-blank-lines=NUMBER
|
group of NUMBER empty lines counted as one
|
-n, --number-format=FORMAT
|
insert line numbers according to FORMAT
|
-p, --no-renumber
|
do not reset line numbers at logical pages
|
-s, --number-separator=STRING
|
add STRING after (possible) line number
|
-v, --starting-line-number=NUMBER
|
first line number on each logical page
|
-w, --number-width=NUMBER
|
use NUMBER columns for line numbers
|
--help
|
display help and exit
|
--version
|
display version information and exit
|
By default, nl selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn. CC are two delimiter characters for separating logical pages. A missing second character implies a colon (:).
For a backslash (\), two backslashes (\\).
STYLE is one of:
a
|
number all lines
|
t
|
number only nonempty lines
|
n
|
number no lines
|
pBRE
|
number only lines that contain a match for the basic regular expression, BRE
|
FORMAT is one of:
ln
|
left justified, no leading zeros
|
rn
|
right justified, no leading zeros
|
rz
|
right justified, leading zeros
|
nl 例子
cat list.txt
apples
oranges
potatoes
lemons
garlic
nl list.txt
1 apples
2 oranges
3 potatoes
4 lemons
5 garlic
在上面的示例中,我们使用cat命令显示list.txt的内容。然后,我们使用nl为每行编号,并将结果显示到标准输出中。
nl list.txt > nlist.txt
cat nlist.txt
1 apples
2 oranges
3 potatoes
4 lemons
5 garlic
在上面的示例中,我们运行相同的nl命令,但是将输出重定向到新文件nlist.txt。然后我们使用cat来显示结果。
cat list.txt
apples
oranges
potatoes
lemons
garlic
nl list.txt
1 apples
2 oranges
3 potatoes
4 lemons
5 garlic
In the above example, we use the cat command to display the contents of list.txt. Then we use nl to number each line and display the result to standard output.
nl list.txt > nlist.txt
cat nlist.txt
1 apples
2 oranges
3 potatoes
4 lemons
5 garlic
In the above example, we run the same nl command, but redirect the output to a new file, nlist.txt. Then we use cat to display the results.