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
/
numstr1.awk
blob: e58404fc46f18c011e8a326a7dd55b9e05e45960 (
plain
)
1
2
3
4
5
6
7
BEGIN
{
split
(
"1.234"
,
f
)
OFMT
=
"%.1f"
print
f
[
1
]
x
=
f
[
1
]+
0
print
f
[
1
]
}