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

  1. # Date:  04-19-89  09:22
  2. # From:  Will Duquette
  3. # To:    Rob Duff
  4. # Subj:  Awk V2.12
  5. # Using the "gsub()" function in certain ways breaks the "getline"
  6. # function.  For example,
  7.     gsub(/!/, ".")
  8.     print
  9.     getline
  10.     print
  11. }
  12.  
  13.