Reputation: 1023
What is the Linux equivalent of this command?
taskkill /F /IM myStupidProcess.exe /T
Upvotes: 14
Views: 31083
Reputation: 7798
kill -9 pid_of_process
or
killall -KILL myStupidProcess
Upvotes: 19