Resource Page Description
nl.exe is the unix-like line number tool, which just read your text file (or source code file), and then add line numbers, output to the screen
Possible usage
nl pada.vb this will output the source code w/ line numbers to screen (terminal)
nl pada.vb > pada.vb.txt this will read the source code pada.vb and put the line numbers then output to file pada.vb.txt
nl pada.vb > pada.vb.txt && notepad /p pada.vb.txt this would output the result to pada.vb.txt file and use notepad to print it out... :D