PROGRAMS

pkill

Article by:
Date Published:
Last Modified:

Overview

pkill is a program that can be used to send a signal to a processes, by specifying a regex pattern that matches part of the process name (or it’s full command line name with the -f option).

Force Kill

The most direct way to kill a process is with:

1
$ sudo pkill -9 "this_matches_part_of_process_name"

The -9 option tells pkill to issue the SIGKILL signal.

Be Careful!

pkill can be the nuclear bomb of all kill tools, as it is surprisingly easy to make the pattern too weak, and it matches something you didn’t intend. And a way to crash your computer:

1
$ sudo pkill -9 ".*" 

Authors

Geoffrey Hunter

Dude making stuff.

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License .

Related Content:

Tags

comments powered by Disqus