home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gawk-2.15.6-base.tgz / gawk-2.15.6-base.tar / fsf / gawk / test / argtest.awk < prev    next >
Text File  |  1993-11-02  |  78b  |  5 lines

  1. BEGIN {
  2.     for (i = 0; i < ARGC; i++)
  3.         printf("ARGV[%d] = %s\n", i, ARGV[i])
  4. }
  5.