用一行linux命令获取tomcat或was的路径
时间: 2024-03-02 18:49:58 浏览: 82
Linux常用命令
可以使用以下命令获取Tomcat的路径:
```
ps -ef | grep tomcat | grep -v grep | awk '{print $NF}' | xargs dirname
```
或者使用以下命令获取WebSphere Application Server (WAS)的路径:
```
ps -ef | grep "was." | grep -v grep | awk '{print $NF}' | xargs dirname
```
注意:以上命令假设Tomcat或WAS进程的名称中包含关键字"tomcat"或"was"。如果进程名称不同,需要相应地调整关键字。
阅读全文