xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/splitargv.in (revision b172429eb7fa68712e018d8965b6d0c7f6779f9e)
1BEGIN   {
2          for (idx = 1; idx < ARGC; idx++)
3            split(ARGV[idx], temp, ".");
4        }
5        {
6          print $0;
7        }
8