When I run the following
awk -F, '{print $2,":",$1}'
It prints
"First : Second"
How can I get
"First:Second"
Omit the ,s
,
awk -F, '{print $2 ":" $1}'
2.1m questions
2.1m answers
60 comments
57.0k users