awk/bugs-fixed/nf-self-assign.awk

7 lines
51 B
Awk
Raw Normal View History

BEGIN {
$0="a b c";
OFS=",";
NF = NF;
print;
}