有时当我尝试启动 Firefox 时,它会显示“Firefox 进程已在运行”。所以我必须这样做:
jeremy@jeremy-desktop:~$ ps aux | grep firefox
jeremy 7451 25.0 27.4 170536 65680 ? Sl 22:39 1:18 /usr/lib/firefox-3.0.1/firefox
jeremy 7578 0.0 0.3 3004 768 pts/0 S+ 22:44 0:00 grep firefox
jeremy@jeremy-desktop:~$ kill 7451
我想要的是一个可以为我做所有这些的命令。它会在进程列表中接受一个输入字符串和grep
它(或其他),并会杀死输出中的所有进程:
jeremy@jeremy-desktop:~$ killbyname firefox
我尝试在 PHP 中执行此操作,但exec('ps aux')
似乎只显示exec()
在 PHP 脚本本身中执行的进程(因此它显示的唯一进程就是它本身。)