- 论坛徽章:
- 0
|
逻辑比较二,比较容易理解的实现- [root@localhost shell]# cat 123
- "a":"1", "b":"2.3", "c":"1.235"
- "a":"1.1","c":"1.23d","b":"2.32"
- "b":"2.33", "c":"1.233","a":"1.2"
- "b":"2.3f", "a":"1.3", "c":"1.23g"
- "a":"1.4", "b":"2.3y", "c":"1.23h"
- [root@localhost shell]# awk 'BEGIN{FS=","}{for(i=1;i<=NF;i++)id[substr($i,index($i,"\"")+1,1)]=substr($i,5+index($i,"\""),length($i)-5-index($i,"\""));print id["a"],id["b"],id["c"]}' 123
- 1 2.3 1.235
- 1.1 2.32 1.23d
- 1.2 2.33 1.233
- 1.3 2.3f 1.23g
- 1.4 2.3y 1.23h
复制代码 好蛋疼的空格和双引号,楼主的源文件真难受。。。 |
|