MAN page from Fedora 16 sysvinit-tools-2.88-5.dsf.fc16.x86_64.rpm
PIDOF
Section: Linux System Administrator's Manual (8)
Updated: 01 Sep 1998
Index NAME
pidof -- find the process ID of a running program.
SYNOPSIS
pidof[
-s][
-c][
-n][
-x][
-m][
-oomitpid[,omitpid..]][
-oomitpid[,omitpid..]..]
program[
program..]
DESCRIPTION
Pidoffinds the process id's (pids) of the named programs. It prints thoseid's on the standard output. This program is on some systems used inrun-level change scripts, especially when the system has a
System-V like
rc structure. In that case these scripts arelocated in /etc/rc?.d, where ? is the runlevel. If the system hasa
start-stop-daemon(8) program that should be used instead.
OPTIONS
- -s
- Single shot - this instructs the program to only return one pid.
- -c
- Only return process ids that are running with the same root directory.This option is ignored for non-root users, as they will be unable to checkthe current root directory of processes they do not own.
- -n
- Avoidstat(2)system function call on all binaries which are located on networkbased file systems likeNFS.Instead of using this option the the variablePIDOF_NETFSmay be set and exported.
- -x
- Scripts too - this causes the program to also return process id's ofshells running the named scripts.
- -o omitpid
- Tells pidof to omit processes with that process id. The specialpid %PPID can be used to name the parent process of the pidofprogram, in other words the calling shell or shell script.
- -m
- When used with -o, will also omit any processes that have the sameargv[0] and argv[1] as any explicitly omitted process ids. This can beused to avoid multiple shell scripts concurrently calling pidof returningeach other's pids.
EXIT STATUS
- 0
- At least one program was found with the requested name.
- 1
- No program was found with the requested name.
NOTES
pidof is actually the same program as
killall5;the program behaves according to the name under which it is called.
When pidof is invoked with a full pathname to the program itshould find the pid of, it is reasonably safe. Otherwise it is possiblethat it returns pids of running programs that happen to have the same nameas the program you're after but are actually other programs. Note thatthat the executable name of running processes is calculated withreadlink(2),so symbolic links to executables will also match.
SEE ALSO
shutdown(8),
init(8),
halt(8),
reboot(8),
killall5(8)
AUTHOR
Miquel van Smoorenburg, miquelsAATTcistron.nl
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- OPTIONS
- EXIT STATUS
- NOTES
- SEE ALSO
- AUTHOR
This document was created byman2html,using the manual pages.