home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / awk / line.awk < prev    next >
Encoding:
Text File  |  1990-02-08  |  81 b   |  7 lines

  1. # This program provides line numbering
  2. # AKW p 6
  3.  
  4. {
  5.         print NR, $0
  6. }
  7.