PIDOF(8) | Linux System Administrator's Manual | PIDOF(8) |
pidof -- find the process ID of a running program.
pidof [-s] [-c] [-n] [-x] [-o omitpid[,omitpid...]] [-o omitpid[,omitpid...]...] [-f format] program [program...]
Pidof finds the process id's (PIDs) of the named programs. It prints those id's on the standard output. This program is on some systems used in run-level change scripts, especially when the system has a System-V like rc structure. In that case these scripts are located in /etc/rc?.d, where ? is the runlevel. If the system has a start-stop-daemon (8) program that should be used instead.
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 it should find the pid of, it is reasonably safe. Otherwise it is possible that it returns PIDs of running programs that happen to have the same name as the program you're after but are actually other programs. Note that the executable name of running processes is calculated with readlink(2), so symbolic links to executables will also match.
Miquel van Smoorenburg, miquels@cistron.nl
01 Sep 1998 |