awk/bugs-fixed/nf-self-assign.awk
2018-09-23 17:59:52 -07:00

7 lines
51 B
Awk

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