xref
: /
netbsd-src
/
external
/
historical
/
nawk
/
dist
/
bugs-fixed
/
nf-self-assign.awk
(revision 4f645668ed707e1f969c546666f8c8e45e6f8888)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
BEGIN
{
2
$
0
=
"a b c"
;
3
OFS
=
","
;
4
NF
=
NF
;
5
print
;
6
}
7