1 Star 0 Fork 30

钟实华/proxylab

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
free-port.sh 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
李幼萌 提交于 2024-05-13 18:28 . first commit
#!/bin/bash
#
# free-port.sh - returns an unused TCP port.
#
PORT_START=4500
PORT_MAX=65000
port=${PORT_START}
while [ TRUE ]
do
portsinuse=`netstat --numeric-ports --numeric-hosts -a --protocol=tcpip | grep tcp | \
cut -c21- | cut -d':' -f2 | cut -d' ' -f1 | grep -E "[0-9]+" | uniq | tr "\n" " "`
echo "${portsinuse}" | grep -wq "${port}"
if [ "$?" == "0" ]; then
if [ $port -eq ${PORT_MAX} ]
then
exit -1
fi
port=`expr ${port} + 1`
else
echo $port
exit 0
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/zhong-shihua/proxylab.git
[email protected]:zhong-shihua/proxylab.git
zhong-shihua
proxylab
proxylab
master

搜索帮助