index
:
illumos-gate
master
sysroot/20181213
[no description]
Dyson
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
fsrs.awk
blob: a0014891a28fc892a5c57d8c0a5f92d797747028 (
plain
)
1
2
3
4
5
6
7
8
BEGIN
{
RS
=
""
;
FS
=
"
\n
"
;
ORS
=
""
;
OFS
=
"
\n
"
;
}
{
split
(
$
2
,
f
,
" "
)
print
$
0
;
}