How to kill all processes matching text

Re: KILLALL, Kill processes containing text

kill -9 `ps -ef | grep TEXT  | grep -v grep | awk '{print $2}'`
Was this helpful?