Linux & Ubuntu/Linux tips
[linux]check and kill all process of certain user
알 수 없는 사용자
2007. 12. 11. 09:34
check all process of certain user :OR
$ top -u johndoe
$ top -u 500OR
$ top -U johndoe
kill all process of certain user:
kill -9 `ps -u <username> -o "pid="`