linux bash Kill process by search string In Linux, you can kill all processes by name (or by username etc) using something like this: kill -9 $(ps aux | grep 'some_process_name' | awk '{print $2}') Comments