Examples (8)
Number non-blank lines in a file
nl path/to/fileNumber [a]ll [b]ody lines including blank lines or do [n]ot number [b]ody lines
nl -b a|n path/to/fileNumber only the [b]ody lines that match a basic `regex` (BRE) [p]attern
nl -b p'FooBar[0-9]' path/to/fileUse a specific [i]ncrement for line numbering
nl -i increment path/to/fileSpecify the line numbering format to [r]ight or [l]eft justified, keeping leading [z]eros or [n]ot
nl -n rz|ln|rnSpecify the line numbering's [w]idth (6 by default)
nl -w col_width path/to/fileUse a specific string to [s]eparate the line numbers from the lines (`TAB` by default)
nl -s separator path/to/filemade by @shridhargupta | data from tldr-pages