windows下的一个关闭端口占用进程shell脚本

Posted issue是fw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows下的一个关闭端口占用进程shell脚本相关的知识,希望对你有一定的参考价值。

下载git bash就可以用shell脚本了

这里是关闭端口8888的占用进程,改端口只需要在第一行改

比较方便hhh

netstat -o -n -a | findstr :8888 > in.txt
flag=0
port=0
for line in `cat in.txt`
do
    if [ "$line" == "LISTENING" ]
    then
        flag=1
        continue
    elif [ "$flag" == "1" ]
    then
        echo "正在删除PID=$line"
        `taskkill //F //PID $line`
    fi
    flag=0
done

以上是关于windows下的一个关闭端口占用进程shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在Windows下查看JAVA端口占用明细

查找端口占用并关闭进程(windows)

查找端口占用并关闭进程(windows)

linux/windows解决/关闭端口占用

windows查看端口占用进程并关闭

windows 命令行关闭占用的端口