I need to search for a certain process and kill that process. I wrote a command like this:

`ps -e | grep dmn | awk '{print $1}' |kill

where the process name is dmn. But its not working. How could I do this

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted
kill `ps -e | grep dmn | awk '{print $1}'`
link|improve this answer
feedback

You could use

pkill dmn 

if your system has the pkill command.

link|improve this answer
+1 for pkill instead of killall. It's available on multiple platforms without different "meaning" (killall on Solaris is equivalent to killall5 on Linux for example - That is, kill ALL processes) – plundra Dec 28 '11 at 9:24
feedback

In case there are multiple processes that you want to remove you can use this:

ps -efw | grep dmn | grep -v grep | awk '{print $2}' | xargs kill

Note: You need to remove grep process itself from the output, that's why `grep -v grep is used.

link|improve this answer
1  
You can avoid grep from showing up in your grep by putting the first char inside brackets, like: grep [d]mn – Oldskool Dec 28 '11 at 9:26
@Oldskool Nice trick. Using metacharacteres to make the grep regular expression don't match itself is a nice idea. – jcollado Dec 28 '11 at 12:27
feedback

You can also use killall:

killall dmn
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.