shell命令获取tomcat的进程号id
时间:2016-04-25 17:47:26
收藏:0
阅读:1624
假设获取tomcat内容相关的进程信息
命令:ps -ef | grep tomcat
这个脚本首先用ps -ef | grep tomcat 获得了tomcat进程信息中,这样出来的结果中会包含grep本身,因此通过 | grep -v grep
来排除grep本身,然后通过 awk ‘{print $2}‘
来打印出要找的进程id号
命令:ps -ef | grep tomcat | grep -v grep | awk ‘{print $2}‘
评论(0)