home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / gawk-2.15.5-src.lha / gawk-2.15.5 / test / splitargv.in < prev    next >
Text File  |  1993-10-20  |  144b  |  8 lines

  1. BEGIN   {
  2.           for (idx = 1; idx < ARGC; idx++)
  3.             split(ARGV[idx], temp, ".");
  4.         }
  5.         {
  6.           print $0;
  7.         }
  8.