标签:col awk 查看端口 xargs tst color span 线程 linu
查看 端口所在线程 lsof -i:8080
查看mac终端端口命令 netstat -AaLlnW (相当于linux的 netstat -lntp)
查看端口是否被占用 sudo lsof -i :8080
结束占用端口的所有进程
lsof -P | grep ‘:8080‘ | awk ‘{print $2}‘ | xargs kill -9
标签:col awk 查看端口 xargs tst color span 线程 linu
原文地址:https://www.cnblogs.com/faberbeta/p/mac001.html