index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
splitargv.in
blob: 10886ef26d001d339757e8c84d056027bde9b0b1 (
plain
)
1
2
3
4
5
6
7
BEGIN {
for
(
idx
=
1
;
idx
<
ARGC
;
idx
++)
split
(
ARGV
[
idx
],
temp
,
"."
);
} { print
$0
;
}