home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / ARGV.AWK next >
Encoding:
AWK Script  |  1990-02-08  |  101 b   |  4 lines

  1. # print all the command line arguments of the program
  2.  
  3. BEGIN { for (i in ARGV) print i, ARGV[i] }
  4.