home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320.zip / ARGV.AWK next >
Text File  |  1990-02-08  |  101b  |  4 lines

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