Kill list of processes from command line

lancemiller.org

This is a very well written description of a command to kill all processes that match a name in the process list.

kill `ps aux | grep Mozilla | grep -v grep | awk '{print $2}'`

Leave a Reply

You must be logged in to post a comment.