自由人博客
lsof -i:3000 | grep node | awk '{ print $2 }' | xargs kill
lsof -i:3000
列出所有占用3000端口的文件
grep node
更多...