当我运行以下
awk -F\, '{print $2,":",$1}'
它打印
"First : Second"
我怎样才能得到
"First:Second"
省略, s
,
awk -F\, '{print $2 ":" $1}'
尝试这个:
awk -F\, '{print $2":"$1}'