How to give arguments to kill via pipe [duplicate] How to give arguments to kill via pipe [duplicate] linux linux

How to give arguments to kill via pipe [duplicate]


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.