info > pkill(1)

๐Ÿท๏ธ NAME

pgrep, pkill, pidwait โ€” look up, signal, or wait for processes based on name and other attributes

๐Ÿš€ Quick Reference

Use Case Command Description
๐Ÿ” Find process IDs by name pgrep -u root named List PIDs of processes named named owned by root
๐Ÿ“จ Send a signal to a process pkill -HUP syslogd Force syslog to reread its configuration file
๐Ÿ“‹ List full command line of matching processes pgrep -a sshd Show full command line of all sshd processes
๐Ÿ“Š Count matching processes pgrep -c chrome Print the number of chrome processes
๐ŸŒ Show thread IDs instead of PIDs pgrep -w firefox List all thread IDs of firefox
โณ Wait for processes to exit pidwait -x vim Wait for all processes named vim to finish

๐Ÿ“‹ SYNOPSIS

pgrep [options] pattern
pkill [options] pattern
pidwait [options] pattern

๐Ÿ“– 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.

โš™๏ธ OPTIONS

๐Ÿ“ก -signal

--signal signal ๐Ÿ”” Defines the signal to send to each matched process. Either the numeric or the symbolic signal name can be used. (pkill only.)

๐Ÿ” -c, --count

๐Ÿ”ข Suppress 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, --delimiter delimiter ๐Ÿ”— Sets the string used to delimit each process ID in the output (by default a newline). (pgrep only.)

๐Ÿ—‘๏ธ -e, --echo

๐Ÿ“ข Display name and PID of the process being killed. (pkill only.)

๐Ÿ“œ -f, --full

๐Ÿ“‹ The pattern is normally only matched against the process name. When -f is set, the full command line is used.

-g, --pgroup pgrp,... ๐Ÿ‘ฅ Only match processes in the process group IDs listed. Process group 0 is translated into pgrep's, pkill's, or pidwait's own process group.

-G, --group gid,... ๐Ÿ‘ค Only match processes whose real group ID is listed. Either the numerical or symbolical value may be used.

๐Ÿ”  -i, --ignore-case

๐Ÿ”„ Match processes case-insensitively.

๐Ÿ“‹ -l, --list-name

๐Ÿท๏ธ List the process name as well as the process ID. (pgrep only.)

๐Ÿ“‹ -a, --list-full

๐Ÿ“ List the full command line as well as the process ID. (pgrep only.)

๐Ÿ†• -n, --newest

โฐ Select only the newest (most recently started) of the matching processes.

๐Ÿ† -o, --oldest

โฐ Select only the oldest (least recently started) of the matching processes.

-O, --older secs โณ Select processes older than secs.

-P, --parent ppid,... ๐Ÿ‘ช Only match processes whose parent process ID is listed.

-s, --session sid,... ๐ŸชŸ Only match processes whose process session ID is listed. Session ID 0 is translated into pgrep's, pkill's, or pidwait's own session ID.

-t, --terminal term,... ๐Ÿ–ฅ๏ธ Only match processes whose controlling terminal is listed. The terminal name should be specified without the /dev/ prefix.

-u, --euid euid,... ๐Ÿ‘ค Only match processes whose effective user ID is listed. Either the numerical or symbolical value may be used.

-U, --uid uid,... ๐Ÿ‘ค Only match processes whose real user ID is listed. Either the numerical or symbolical value may be used.

๐Ÿ”„ -v, --inverse

๐Ÿ” Negates 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, --lightweight

๐Ÿงต Shows all thread ids instead of pids in pgrep's or pidwait's context. In pkill's context this option is disabled.

๐ŸŽฏ -x, --exact

โœ… Only match processes whose names (or command lines if -f is specified) exactly match the pattern.

-F, --pidfile file ๐Ÿ“„ Read PIDs from file. This option is more useful for pkill or pidwait than pgrep.

-L, --logpidfile ๐Ÿ”’ Fail if pidfile (see -F) not locked.

-r, --runstates D,R,S,Z,... โš™๏ธ Match only processes which match the process state.

--ns pid ๐Ÿ  Match 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.

--nslist name,... ๐Ÿ“‹ Match only the provided namespaces. Available namespaces: ipc, mnt, net, pid, user, uts.

-q, --queue value ๐Ÿ“จ Use 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, --version

๐Ÿ“„ Display version information and exit.

โ“ -h, --help

๐Ÿ“š Display help and exit.

๐Ÿงฉ 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 Codes

๐Ÿ“ 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.

The running pgrep, pkill, or pidwait process will never report itself as a match.

๐Ÿ› BUGS

The options -n and -o and -v cannot be combined. Let me know if you need to do this.

Defunct processes are reported.

๐Ÿ”— SEE ALSO

ps(1), regex(7), signal(7), sigqueue(3), killall(1), skill(1), kill(1), kill(2)

๐Ÿ‘ค AUTHOR

Kjetil Torgrim Homme โŸจkjetilho AT ifi.noโŸฉ

๐Ÿ“ฌ REPORTING BUGS

Please send bug reports to โŸจprocps AT freelists.orgโŸฉ

pkill(1)
๐Ÿท๏ธ NAME ๐Ÿš€ Quick Reference ๐Ÿ“‹ SYNOPSIS ๐Ÿ“– DESCRIPTION โš™๏ธ OPTIONS
๐Ÿ“ก -signal ๐Ÿ” -c, --count ๐Ÿ—‘๏ธ -e, --echo ๐Ÿ“œ -f, --full ๐Ÿ”  -i, --ignore-case ๐Ÿ“‹ -l, --list-name ๐Ÿ“‹ -a, --list-full ๐Ÿ†• -n, --newest ๐Ÿ† -o, --oldest ๐Ÿ”„ -v, --inverse โšก -w, --lightweight ๐ŸŽฏ -x, --exact โ„น๏ธ -V, --version โ“ -h, --help
๐Ÿงฉ OPERANDS ๐Ÿ’ก EXAMPLES ๐Ÿšช Exit Codes ๐Ÿ“ NOTES ๐Ÿ› BUGS ๐Ÿ”— SEE ALSO ๐Ÿ‘ค AUTHOR ๐Ÿ“ฌ REPORTING BUGS

Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-07 01:43 @216.73.216.207
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format

^_top_^