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
/
printfbad4.awk
blob: dd9220ae20fe186253d072d8c0e22e3ca33f12fc (
plain
)
1
2
3
4
5
BEGIN
{
for
(
i
=
1
;
i
<=
10
;
i
++)
{
printf
"%03$*d %2$d
\n
"
,
4
,
5
,
i
}
}