题目:
获取前10个time_wait连接最多的IP地址
答案:
netstat -n | grep TIME_WAIT | awk '{print $5}' | uniq -c | sort -nr | head -n10