home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / gnu / gawk-2.15.5-src.lha / GNU / src / amiga / gawk-2.15.5 / test / argtest.awk < prev    next >
Encoding:
AWK Script  |  1993-11-02  |  78 b   |  5 lines

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