69 420 1970 Asked: 2019-05-07 07:17:12 +0800 CST2019-05-07 07:17:12 +0800 CST 2019-05-07 07:17:12 +0800 CST 哪个命令可以从 0 开始对行进行编号? 772 我需要从 0 开始对行进行编号。 我该怎么做?我试过cat -b了,但它从 1 开始。 我想要类似的东西,但从 0 开始。 command | cat -b 输出: 1 这是字符串 0 bash 1 个回答 Voted Best Answer DavidPostill 2019-05-07T07:50:10+08:002019-05-07T07:50:10+08:00 我需要从 0 开始对行进行编号 使用nl而不是cat。 您可以使用-v选项后跟您希望开始的数字来设置起始行号: command | nl -v 0 -v NUMBER --starting-line-number=NUMBER Set the initial line number on each logical page to `NUMBER` (default 1). 源nl 手册页 - Linux - SS64.com 进一步阅读 Linux命令行的AZ索引| SS64.com nl 手册页 - Linux - SS64.com Linux nl 命令用法和示例 - Putorius
我需要从 0 开始对行进行编号
使用
nl
而不是cat
。您可以使用
-v
选项后跟您希望开始的数字来设置起始行号:源nl 手册页 - Linux - SS64.com
进一步阅读