Killing a process by name

Published: Tuesday, Apr 22, 2008 Last modified: Saturday, Mar 23, 2024

Instead of using ps aux | grep firefox and finding the process ID to kill -9, you could just use:

pkill -9 firefox

Of course, this approach can be too agressive. ;)