I'm looking for a way to kill processes according to their name ('job_runner_').
this is what i currently do, i run the following command:
ps -ef |grep job_runner_ and then run kill -9 on each on of the processes returned (there could be several processes returned).
How can I do it on a single command?
job_runner_0,job_runner_1,job_runner_2... – Ran Jun 21 '12 at 10:25