mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
305 B
305 B
nl
A utility for numbering lines, either from a file, or from standard input.
- Number lines in a file:
nl {{file}}
- Number only the lines with printable text:
nl -t {{file}}
- Number only the body lines that match a basic regular expression (BRE) pattern:
nl -b p'FooBar[0-9]' {{file}}