Killing a process by name
Published: Tuesday, Apr 22, 2008 Last modified: Monday, Feb 10, 2025
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. ;)