home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / cmplangm / 1989_6 / awk / line.awk < prev    next >
Text File  |  1987-12-10  |  72b  |  7 lines

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