Answers for "kill specific process linux"

2

how to kill process in linux by name

######################################################
# How to Kill the supervisord process without the PID
######################################################
ps -ef | grep 'supervisord' | grep -v grep | awk '{print $2}' | xargs -r kill -9
Posted by: Guest on June-22-2021
4

how to kill a process in linux

kill -KILL PIDnumber ... for example, kill -KILL 12345
Posted by: Guest on November-14-2019

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language