web日志中ip请求次数统计shell脚本代码
#!/bin/sh
echo "input log file path"
read path
pa="$path"
cat $pa |awk '{print $1}'|sort -nr |uniq -c |sort -nr |more
阅读全文
#!/bin/sh
echo "input log file path"
read path
pa="$path"
cat $pa |awk '{print $1}'|sort -nr |uniq -c |sort -nr |more
阅读全文
在类Unix系统中可以使用top查看系统资源、进程、内存占用等信息。查看网络状态可以使用netstat、nmap等工具。若要查看实时的网络流量,监控TCP/IP连接等,则可以使用iftop。一、iftop是什么?iftop是类似于top的实时流量监控工具。官方网站:http://www.ex-parrot.com/~pdw/iftop/二、iftop有什么用?iftop可以用来监控网卡的实时...
阅读全文
字段全部相同,MySQL查询语句如下INSERT ignore into group
SELECT FROM group0001;
INSERT ignore into group
SELECT FROM group0002;
INSERT ignore into group
SELECT FROM group0003;
INSERT ignore into group
S...
阅读全文