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 / splitargv.awk < prev    next >
Text File  |  1993-10-19  |  144b  |  8 lines

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