公告
财富商城
积分规则
提问
发文
2019-06-14 20:44发布
虎瘦雄心在
When I run the following
awk -F\, '{print $2,":",$1}'
It prints
"First : Second"
How can I get
"First:Second"
Try this:
awk -F\, '{print $2":"$1}'
Omit the ,s
,
awk -F\, '{print $2 ":" $1}'
最多设置5个标签!
Try this:
Omit the
,
s