xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
ofmtstrnum.awk
(revision 2aeafac3612e19716bf8164f89c3c9196342979c)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
BEGIN
{
2
split
(
" 1"
,
f
,
"|"
)
3
OFMT
=
"%.1f"
4
print
f
[
1
]
5
x
=
f
[
1
] +
0
6
print
f
[
1
]
7
}
8