7 lines
51 B
Awk
7 lines
51 B
Awk
|
BEGIN {
|
||
|
$0="a b c";
|
||
|
OFS=",";
|
||
|
NF = NF;
|
||
|
print;
|
||
|
}
|