~vcs-imports/gawk/master

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