xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
gnu
/
fsrs.awk
(revision 069e6b7e31ba5dcbc5441b98af272714d9a5455c)
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