标签:shell
[root@host133 cailu]# cat urfile
1 a
2 b
3 a
1 d
[root@host133 cailu]# awk ‘{a[$1]=a[$1]?a[$1]OFS$2:$2}END{for(i in a)print i,a[i]}‘ urfile
1 a d
2 b
3 a
本文出自 “追求” 博客,请务必保留此出处http://chenxy.blog.51cto.com/729966/1434141
标签:shell
原文地址:http://chenxy.blog.51cto.com/729966/1434141