xref
: /
illumos-gate
/
usr
/
src
/
test
/
util-tests
/
tests
/
awk
/
bugs-fixed
/
nf-self-assign.awk
(revision 8aafd47d0dbabbca4365c9565fbe0e051e7346dd)
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