以前工作的时候,经常需要看某个端口是否是通的,其实 telnet
完全可以胜任,但是 telnet
后面的地址只能是 ip port
这种形式,一般情况,地址复制来都是 ip:port
这种形式的,所以每次 telnet
都要手动去掉冒号,然后分割,有时复制来的地址还带协议,比如 https://www.baidu.com
,这个时候就蛋疼了。
然后我发现了 tcping 这个软件,但是秉承着造轮子的思想,我就用 Golang 重新造了一个。
tcping https://baidu.com
tcping -H baidu.com
tcping -H baidu.com 80
tcping baidu.com
tcping baidu.com:80
tcping baidu.com 80
brew tap cloverstd/tap && brew install tcping-go
下载对应的文件即可,下载地址 https://github.com/cloverstd/tcping/releases
1
timothyye 2017-10-12 00:00:34 +08:00
已 star
|
2
wwqgtxx 2017-10-12 01:01:54 +08:00 via iPhone
不打算编译个 windows 版本么
|
4
vus520 2017-10-15 16:28:27 +08:00
顺路求一个 ICMP 的 GO 实现
|
5
afpro 2017-10-16 08:21:35 +08:00
用 python 包一个 telnet 多好呐
|