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
|
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
| |||
|
feedback
|
|
| |||
|
feedback
|
|
In case there are multiple processes that you want to remove you can use this:
Note: You need to remove grep process itself from the output, that's why `grep -v grep is used. | |||||||
feedback
|