Müller
Müller

Reputation: 1023

Linux equivalent of taskkill

What is the Linux equivalent of this command?

taskkill /F /IM myStupidProcess.exe /T

Upvotes: 14

Views: 31083

Answers (1)

Joe
Joe

Reputation: 7798

kill -9 pid_of_process

or

killall -KILL myStupidProcess

Upvotes: 19

Related Questions