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.
大家早上好,
PHP Webdriver (Facebook) - 有什么方法可以在会话期间获取当前午餐浏览器 (Firefox) 的 PID (Linux, Centos 7)?
当然,它就像pidof firefox.
pidof firefox
ps命令需要很多输入参数。使用--format和--sort您可以找到具有持续时间的流程并按持续时间对其进行排序。
ps
--format
--sort
ps -ef --format=pid,cmd,time --sort=time | grep firefox
您可以进一步过滤掉它并开发一个脚本来终止firefox持续时间高于给定值的进程。
firefox