跳转至

windows命令#

约 32 个字 5 行代码 预计阅读时间 1 分钟

查看端口占用#

Bash
# 查看所有端口
netstat -ano

# 查看指定端口
netstat -ano|findstr "8080"
观察结果中的PID
在任务栏管理器中找到对应进程

评论