ps -ef | grep 'myProcessName' | grep -v grep | awk '{print $2}' | xargs -r kill -9
######################################################
# How to Kill the supervisord process without the PID
######################################################
ps -ef | grep 'supervisord' | grep -v grep | awk '{print $2}' | xargs -r kill -9
pkill firefox
kill -9 1234
//where 1234 is process ID and -9 is an option to send a KILL singal
kill -KILL PIDnumber ... for example, kill -KILL 12345
ps -ef | grep 'myProcessName' | grep -v grep | awk '{print $2}' | xargs -r kill -9
######################################################
# How to Kill the supervisord process without the PID
######################################################
ps -ef | grep 'supervisord' | grep -v grep | awk '{print $2}' | xargs -r kill -9
pkill firefox
kill -9 1234
//where 1234 is process ID and -9 is an option to send a KILL singal
kill -KILL PIDnumber ... for example, kill -KILL 12345