xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
fsrs.awk
(revision c3937c08b16d32677a7dc955a81325f2e7a61b5d)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
BEGIN
{
2
RS
=
""
;
FS
=
"\n"
;
3
ORS
=
""
;
OFS
=
"\n"
;
4
}
5
{
6
split
($
2
,
f
,
" "
)
7
print
$
0
;
8
}
9