Bunuh semua proses dengan nama Linux
ps -ef | grep 'myProcessName' | grep -v grep | awk '{print $2}' | xargs -r kill -9
Uptight Unicorn
ps -ef | grep 'myProcessName' | grep -v grep | awk '{print $2}' | xargs -r kill -9
kill $(pgrep bash)
killall -u username
pkill -u username
killall node -9
#terminate process with SIGKILL signal by process id
kill -9 pid
Find PID of process to kill with:
ps ax
Then just specify "kill PID" command as for example:
kill 16320
kill -9 16320 #Force kill in case process is not answering.