home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 333_02 / p063.awk < prev    next >
Text File  |  1989-04-22  |  199b  |  12 lines

  1.  
  2. #   echo - print command line arguments
  3.  
  4. BEGIN        {
  5.         for (i = 0; i < ARGC; ++i)
  6.             printf "%s ", ARGV[i]
  7.         printf "\n"
  8.         for (i in ARGV)
  9.             print "[" i "]", ARGV[i]
  10.         exit
  11.         }
  12.