killing all processes of a user
this here will do the trick:
pkill -U meinhard
this here is an interesting way to do the same thing:
kill `pgrep -U meinhard -d " "`
actually i was looking for a way to kill all zombie processes, but i didn't find an easy way.
pkill -U meinhard
this here is an interesting way to do the same thing:
kill `pgrep -U meinhard -d " "`
actually i was looking for a way to kill all zombie processes, but i didn't find an easy way.
0 Comments:
Post a Comment
<< Home