home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320.zip / VALID.AWK < prev    next >
Text File  |  1990-02-08  |  85b  |  5 lines

  1. # validate input
  2.  
  3. NF != 2 { print "line", NR, "wrong number of fields"; print }
  4.  
  5.