<< Technote: Re-signed Java applets for Domino | Home | Updating mail template fustrations >>

Send kill to a processes for an user on Linux

Got to start remembering this one - notice use of "inverted pings" for indirection from the ps command to the kill command...

kill -9 `ps -u <username>`



Re: Send kill to a processes for an user on Linux

pkill -u <euid> or pkill -u <uid> could help you too, kills all matching processes.