When I run the following
awk -F, '{print $2,":",$1}'
It prints
"First : Second"
How can I get
"First:Second"
See Question&Answers more detail:osWhen I run the following
awk -F, '{print $2,":",$1}'
It prints
"First : Second"
How can I get
"First:Second"
See Question&Answers more detail:os