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
/
argtest.awk
blob: e7a1145d07f149d133b78e64e581db94151f2d1f (
plain
)
1
2
3
4
BEGIN
{
for
(
i
=
0
;
i
<
ARGC
;
i
++)
printf
(
"ARGV[%d] = %s
\n
"
,
i
,
ARGV
[
i
])
}