假设获取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}‘
时间: 2024-10-18 14:02:59