awk统计

eg:

    把当前系统使用率最高的前10个命令的命令名输出, 并统计命令使用的次数。

        awk  '{comm[$1]++}END{for(i in comm){print i,comm[i]}}' /root/.bash_history | sort -rnk 2 | head

    或者

        awk '{print $1}' /root/.bash_history  | sort | uniq -c |  sort -nr | head


你可能感兴趣的:(awk)