home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / SUBSTR.AWK < prev    next >
Encoding:
Text File  |  1990-02-07  |  114 b   |  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.