summaryrefslogtreecommitdiff
path: root/test/splitargv.awk
blob: 10886ef26d001d339757e8c84d056027bde9b0b1 (plain)
1
2
3
4
5
6
7
BEGIN   {
          for (idx = 1; idx < ARGC; idx++)
            split(ARGV[idx], temp, ".");
        }
        {
          print $0;
        }