- 论坛徽章:
- 32
|
本帖最后由 yestreenstars 于 2013-05-16 09:31 编辑
- [root@localhost ~]# cat i
- 15May13-04:45:19:164 A/1 (3) apple at APP05 a1
- 15May13-06:45:23:846 A/1 (3) apple at APP02 a2
- 15May13-08:07:54:535 A/1 (3) apple at APP02 a2
- 15May13-09:19:43:138 A/1 (3) apple at APP02 a2
- 15May13-10:25:53:856 A/1 (3) apple at APP03 a12
- 15May13-10:27:43:971 A/1 (3) apple at APP02 a3
- 15May13-02:37:57:981 A/1 (3) apple at APP04 a4
- 15May13-02:37:58:895 A/1 (3) orange at OOP12 a1
- 15May13-02:38:09:756 A/1 (3) orange at OOP08 a3
- 15May13-02:38:16:095 A/1 (3) orange at OOP11 a11
- 15May13-02:41:27:961 A/1 (3) orange at OOP10 a34
- 15May13-02:42:52:505 A/1 (3) orange at OOP12 a2
- 15May13-04:21:48:867 A/1 (3) pear at PEA12 a23
- 15May13-06:07:41:565 A/1 (3) pear at PEA12 a24
- [root@localhost ~]# awk '{a[$4];b[$6];c[$4,$6]++}END{for(i=1;i<=asorti(a,d);i++){print d[i];for(j in b)if(c[d[i],j])print d[i],j,c[d[i],j]}}' i
- apple
- apple APP02 4
- apple APP03 1
- apple APP04 1
- apple APP05 1
- orange
- orange OOP08 1
- orange OOP10 1
- orange OOP11 1
- orange OOP12 2
- pear
- pear PEA12 2
- [root@localhost ~]# awk '{a[$4];b[$6];c[$7];d[$4,$6,$7]++}END{for(i=1;i<=asorti(a,e);i++){print e[i];for(j in b)for(k in c)if(d[e[i],j,k])print e[i],j,k,d[e[i],j,k]}}' i
- apple
- apple APP02 a2 3
- apple APP02 a3 1
- apple APP03 a12 1
- apple APP04 a4 1
- apple APP05 a1 1
- orange
- orange OOP08 a3 1
- orange OOP10 a34 1
- orange OOP11 a11 1
- orange OOP12 a1 1
- orange OOP12 a2 1
- pear
- pear PEA12 a23 1
- pear PEA12 a24 1
- [root@localhost ~]#
复制代码 |
|