方法1:
echo $(ps -ef |grep tomcat |grep -w 'tomcat_name'|grep -v 'grep'|awk '{print $2}')
如:返回27742
tomcat_name: tomcat根目录
方法2:
ps -ef | grep tomcat
ps -aux| grep tomcat
...
第一行,第二列即tomcat pid
方法1:
echo $(ps -ef |grep tomcat |grep -w 'tomcat_name'|grep -v 'grep'|awk '{print $2}')
如:返回27742
tomcat_name: tomcat根目录
方法2:
ps -ef | grep tomcat
ps -aux| grep tomcat
...
第一行,第二列即tomcat pid