Archive for 07月 4th, 2008

我常用的小shell

星期五, 07月 4th, 2008 Posted in shell, 系统管理 | No Comments »

下面是我平常用的一些bash shell 组合,方便我的日常管理。 清除所有arp 缓存 arp -n|awk '/^[1-9]/ {print "arp -d "$1}'|sh 显示打开连接数前10个机子的IP 和连接数 cat /proc/net/ip_conntrack | cut -d ' ' -f 10 | cut -d '=' -f 2 | sort | uniq -c ... Read more..