标签:style ar color sp for on bs linux as
为了做自动化部署,第一步就是要先根据端口杀死进程,举例的端口号是8080。
在linux下很容易做到,方法是:
netstat -nlp |grep :::8080 |awk ‘{print $7}‘ |awk -F/ ‘{print $1}‘ |xargs kill -9
在windows下也可以。方法是:
netstat -ano | findstr 0.0.0.0:8080 > 1.txt
for /f "tokens=5" %%a in (1.txt) do taskkill /pid %%a /f /t
标签:style ar color sp for on bs linux as
原文地址:http://my.oschina.net/u/181757/blog/350693