有没有办法在 Linux 命令行中终止一个程序?

有没有办法在 Linux 命令行中终止一个程序?

我目前正在 Linux 机器的命令行上测试一个 C++ 程序,不幸的是它有时会陷入无限循环。有没有办法从命令行终止这个程序?

答案1

pkill myAppName

答案2

获取进程的PID:

  ps -ef | grep <the name here>

然后,

  kill -9 <PID>

答案3

ps aux | grep "name of program" | cut -d ' ' -f 2 | xargs kill -9

是对此的一个不错的单行代码。

答案4

ps -aux | grep "name of the program"

将为您提供该程序的 id,然后:

kill -9 <id of the programm>

相关内容