home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / gawk213b / manychk.awk < prev    next >
Encoding:
AWK Script  |  1993-07-29  |  154 b   |  10 lines

  1. BEGIN{
  2.     cmd = "wc -l junk\\*"
  3. }
  4. {
  5.     cmd | getline
  6.     if (2 != $1 && "" != $1)
  7.         count += 1
  8. }
  9. END { close (cmd); print "this better be 1 ->", count}
  10.