1 Star 1 Fork 3

_KK/useful-scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tcp-connection-state-counter 586 Bytes
一键复制 编辑 原始数据 按行查看 历史
oldratlee 提交于 2018-06-24 23:18 . emojify
#!/bin/bash
# @Function
# show count of tcp connection stat.
#
# @Usage
# $ ./tcp-connection-state-counter
#
# @online-doc https://github.com/oldratlee/useful-scripts/blob/master/docs/shell.md#-tcp-connection-state-counter
# @author Jerry Lee (oldratlee at gmail dot com)
# @author @sunuslee (sunuslee at gmail dot com)
# On MacOS, netstat need to using -p tcp to get only tcp output.
uname | grep Darwin -q && option_for_mac="-ptcp"
netstat -tna $option_for_mac | awk 'NR > 2 {
s[$NF]++
}
END {
for(v in s) {
printf "%-11s %s\n", v, s[v]
}
}' | sort -nr -k2,2
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luokai/useful-scripts.git
git@gitee.com:luokai/useful-scripts.git
luokai
useful-scripts
useful-scripts
master

搜索帮助