awk
案列1:统计访问网站ip次数
awk '{print $1}' /etc/httpd/logs/access_log |uniq -c
案列2:tr bc xargs 结合使用,将下面访问次数相加
awk '{print $1}' /te.txt |xargs|tr " " "+"|bc
#数据
2000 127.0.0.1
7833 127.0.0.1
28 127.0.0.1
12202 127.0.0.1
273 127.0.0.1
394 127.0.0.1
42 127.0.0.1
81 127.0.0.1
6 127.0.0.1
76 127.0.0.1
12 127.0.0.1