awk

案列1:统计访问网站ip次数

  1. awk '{print $1}' /etc/httpd/logs/access_log |uniq -c

案列2:tr bc xargs 结合使用,将下面访问次数相加

  1. awk '{print $1}' /te.txt |xargs|tr " " "+"|bc
  2. #数据
  3. 2000 127.0.0.1
  4. 7833 127.0.0.1
  5. 28 127.0.0.1
  6. 12202 127.0.0.1
  7. 273 127.0.0.1
  8. 394 127.0.0.1
  9. 42 127.0.0.1
  10. 81 127.0.0.1
  11. 6 127.0.0.1
  12. 76 127.0.0.1
  13. 12 127.0.0.1