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