统计网络连接数量脚本

netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'

你可能感兴趣的:(Script,网络)