log基本行为:
my mempool new called, return:0xd20c50, size:#32#, cnt:633
需要取所有行的size后面的数值统计数量并排序:
cat log| awk -F"#" '{print $2}'|sort -n|uniq -c|sort -rn
sort -n: 按数值排序
uniq -c: 统计数据,把相同行合并,前面是相同行的数量
sort -rn: 再次按数值反向排序(最大值放前面)
本文转自 zhegaozhouji 51CTO博客,原文链接:http://blog.51cto.com/1038741/1936410