Nl (Unix)
nl is a Unix utility for numbering lines, either from a file or from standard input, reproducing output on standard output. History
The version of The command is available as a separate package for Microsoft Windows as part of the UnxUtils collection of native Win32 ports of common GNU Unix-like utilities.[4] SyntaxThe command has a number of switches:
The default applied switch is t. nl also supports some command line options. Example $ nl tf
1 echo press cr
2 read cr
3 done
The following example numbers only the lines that begin with a capital letter A (matching on the regular expression /^A/). filename is optional. $ nl -b p^A filename
apple
1 Apple
BANANA
2 Allspice
strawberry
It can be useful as an alternative to grep -n: $ cat somefile
aaaa
bbbb
cccc
dddc
$ nl somefile | grep cccc
3 cccc
See also
References
External linksThe Wikibook Guide to Unix has a page on the topic of: Commands |
Portal di Ensiklopedia Dunia