home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / awk / 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.