freebsd-skq/contrib/awk/test/splitargv.in
1997-10-14 18:17:11 +00:00

8 lines
144 B
Plaintext

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