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

  1. # Abbreviate the country names to their first three characters
  2. # AKW p43
  3.  
  4. { $1 = substr($1, 1, 3); print $0 }
  5.