我正在运行一个 bash 脚本,但我需要终止它。我已使用ps
以下命令获取 PID:
127140 pts/1 00:00:00 bash
128463 pts/1 00:00:00 ps
我知道 PIDF 是 127140 但是当我运行时sudo kill -9 127140
终端关闭了,但进程仍在运行?
也尝试过使用名称来终止脚本。
ps -aux | grep script_name
killall script_name inotifywait
我正在运行一个 bash 脚本,但我需要终止它。我已使用ps
以下命令获取 PID:
127140 pts/1 00:00:00 bash
128463 pts/1 00:00:00 ps
我知道 PIDF 是 127140 但是当我运行时sudo kill -9 127140
终端关闭了,但进程仍在运行?
也尝试过使用名称来终止脚本。
ps -aux | grep script_name
killall script_name inotifywait