You're viewing a comment by Guhan Iyer and its responses.
You're viewing a comment by Guhan Iyer and its responses.
I am being sponsored by Syntress! They bought me an amazing dedicated server to run catonmat on. If you're looking web services, I highly recommend the Syntress guys!
I am being sponsored by A-Writer! If you ever need help with essay writing, look no further than A-Writer! They will help you with your writing in as quickly as 3 hours!
I love to read science books. They make my day and I get ideas for awesome blog posts, such as Busy Beaver, On Functors, Recursive Regular Expressions and many others.
Take a look at my
Amazon wish list, if you're curious about what I have planned reading next, and want to surprise me. :)
If you are interested in advertising on catonmat.net, contact me.
Free tools for coding on Vietstarsoft.com.
Programming homework help.


One of my favorites is:
kill -9 `ps -ef | grep search_string | awk '{print $2}'`The above will find and kill a process that matches search string.
Comment Responses
Very nice, but you should eliminate the process that contain grep:
kill -9 $(ps -ef|grep search_string|grep -v grep|awk -F " " '{ print $2 }')You can do it without grep too:
kill -9 $(ps -ef | awk '/search pattern/ { print $2 }')
And to avoid errors if nothing is found:
ps -ef | awk '/search pattern/ { print $2 }' | xargs -r kill -9
instead of "grep -v grep" you can also use "grep [s]earch_string" so the full line would look like:
kill -9 $(ps -ef | grep [s]earch_string | awk -F " " '{ print $2 }')
Reply To This Comment