Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从不同的目录和不同的配置文件中启动了几个(八个)同名的 jar 文件。
现在我必须杀死一个特定的人。但是 jps 和 ps 都没有提供足够的信息来区分它们。我怎样才能找出哪个 java 进程是从哪个目录启动的?
平台:linux(ubuntu服务器)
从手册页中说:使用选项 e 在命令后显示环境变量。所以尝试使用'e'选项: ps e
ps e
然后您可以查找 PWD 变量。我希望这将有所帮助。