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
/
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
;
}