通过 pgrep -f 指令来获取进程的pid之后,赋值给变量app; 然后使用 kill -9 来结束进程;
注意也可以使用 pidof 指令,来获取进程 pid
bash
#!/bin/bash
# 执行脚本,结束APP的应用程序
app1=$(pgrep -f ./S90.sh) \
&& app2=$(pgrep -f ./start.sh) \
&& app3=$(pgrep -f ./pmu_service)
&& kill -9 $app1 $app2 $app3