pkill
(1)look up, signal, or wait for processes based on name and other attributes
Options
23-signalsignal—
--signalsignalDefines the signal to send to each matched process. Either the numeric or the symbolic signal name can be used. In pgrep or pidwait mode only the long option can be used and has no effect unless used in conjunction with --require-handler to filter to processes with a userspace signal handler present for a particular signal.
-c--countSuppress normal output; instead print a count of matching processes. When count does not match anything, e.g. returns zero, the command will return non-zero value. Note that for pkill and pidwait, the count is the number of matching processes, not the processes that were successfully signaled or waited for.
-d--delimiterdelimiterSets the string used to delimit each process ID in the output (by default a newline). (pgrep only.)
-e--echoDisplay name and PID of the process being killed. (pkill only.)
-f--fullThe pattern is normally only matched against the process name. When -f is set, the full command line is used.
-i--ignore-caseMatch processes case-insensitively.
-l--list-nameList the process name as well as the process ID. (pgrep only.)
-a--list-fullList the full command line as well as the process ID. (pgrep only.)
-n--newestSelect only the newest (most recently started) of the matching processes.
-o--oldestSelect only the oldest (least recently started) of the matching processes.
-O--oldersecsSelect processes older than secs.
-v--inverseNegates the matching. This option is usually used in pgrep's or pidwait's context. In pkill's context the short option is disabled to avoid accidental usage of the option.
-w--lightweightShows all thread ids instead of pids in pgrep's or pidwait's context. In pkill's context this option is disabled.
-x--exactOnly match processes whose names (or command lines if -f is specified) exactly match the pattern.
-F--pidfilefileRead PIDs from file. This option is more useful for pkill or pidwait than pgrep.
-L--logpidfileFail if pidfile (see -F) not locked.
-A--ignore-ancestorsIgnore all ancestors of pgrep, pkill, or pidwait. For example, this can be useful when elevating with sudo or similar tools.
-H--require-handlerOnly match processes with a userspace signal handler present for the signal to be sent.
--nspidMatch processes that belong to the same namespaces. Required to run as root to match processes from other users. See --nslist for how to limit which namespaces to match.
-q--queuevalueUse sigqueue(3) rather than kill(2) and the value argument is used to specify an integer to be sent with the signal. If the receiving process has installed a handler for this signal using the SA_SIGINFO flag to sigaction(2), then it can obtain this data via the si_value field of the siginfo_t structure.
-V--versionDisplay version information and exit.
-h--helpDisplay help and exit.
DESCRIPTION
pgrep looks through the currently running processes and lists the process IDs which match the selection criteria to stdout. All the criteria have to match. For example,
- $ pgrep -u root sshd
will only list the processes called sshd AND owned by root. On the other hand,
- $ pgrep -u root,daemon
will list the processes owned by root OR daemon.
pkill will send the specified signal (by default SIGTERM) to each process instead of listing them on stdout.
pidwait will wait for each process instead of listing them on stdout.
OPERANDS
- pattern
- Specifies an Extended Regular Expression for matching against the process names or command lines.
EXAMPLES
Example 1: Find the process ID of the named daemon:
- $ pgrep -u root named
Example 2: Make syslog reread its configuration file:
- $ pkill -HUP syslogd
Example 3: Give detailed information on all xterm processes:
- $ ps -fp $(pgrep -d, -x xterm)
Example 4: Make all chrome processes run nicer:
- $ renice +4 $(pgrep chrome)
EXIT STATUS
NOTES
The process name used for matching is limited to the 15 characters present in the output of /proc/pid/stat. Use the -f option to match against the complete command line, /proc/pid/cmdline. Threads may not have the same process name as the parent process but will have the same command line.
The running pgrep, pkill, or pidwait process will never report itself as a match.
The -O --older option will silently fail if /proc is mounted with the subset=pid option.
BUGS
AUTHOR
REPORTING BUGS
Please send bug reports to procps@freelists.org