Saturday, March 1, 2008

Kill nobody /user process

Kill nobody /user process :

Kill nobody process
----
ps aux | grep nobody | awk '{print $2}'| xargs kill -9

Kill user process
----
ps aux | grep apache | awk '{print $2}' | xargs kill -9

No comments: