linux tcp链接状态统计

sam 2022年07月27日 139次浏览
netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'