- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2012-09-18 11:25 编辑
回复 1# spidersea
How about this
s for time string
t for time array
T for total/lastest index of time array
c for count of time range
n for temporary count- $ echo '200 19.707
- 200 1.730
- 200 15.092
- 200 0.090
- 200 0.004
- 200 0.011
- 200 0.207
- 200 20.011
- 200 0.004
- 200 0.004' | awk -vs="0.1,0.5,1,3,5,10,16,20" 'BEGIN{T=split(s,t,",")}/^200/{for(n=0;n++<T;)if($2<t[n]){c[n-1]++;next}c[n-1]++}END{for(n=0;n<=T;n++){if(!c[n])c[n]=0;printf "(%3s,%3s]\t%3d\n",t[n],t[n+1],c[n]}}'
- ( ,0.1] 5
- (0.1,0.5] 1
- (0.5, 1] 0
- ( 1, 3] 1
- ( 3, 5] 0
- ( 5, 10] 0
- ( 10, 16] 1
- ( 16, 20] 1
- ( 20, ] 1
复制代码 |
|