📜  树莓派停止一个 rc.local 进程 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:43.395000             🧑  作者: Mango

代码示例1
ps aux | grep 'the-name-of-your-program'
# The number in the second column is the pid.

# Use that pid to send the process a termination signal:
        sudo kill -KILL [put-your-pid-here]