Answers for "linux kill process by command"

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
1

kill a process linux

type top 
find PID in the menu
then,
kill -9 your_PID
Posted by: Guest on June-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language