ubase

suckless linux base utils
git clone git://git.2f30.org/ubase
Log | Files | Refs | README | LICENSE

commit a2265769833d10a5ddede8f4a33a9b9f6cde30aa
parent e5b519c192b92f6930b4da2f5c66bd8bb4ba0378
Author: sin <sin@2f30.org>
Date:   Sun, 13 Apr 2014 16:36:23 +0100

Add pidof manpage

Diffstat:
Apidof.1 | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/pidof.1 b/pidof.1 @@ -0,0 +1,18 @@ +.TH PIDOF 1 ubase-VERSION +.SH NAME +\fBpidof\fR - Find the process ID of a running program +.SH SYNOPSIS +\fBpidof\fR [\fB-o\fI pid1,pid2,...,pidN\fR] [\fB-s\fR] [\fIprogram...\fR] +.SH DESCRIPTION +\fBpidof\fR finds the process id's of the named programs and prints them on +stdout. +.SH OPTIONS +.TP +\fB-o\fR +Tell pidof to omit processes with that process id. The special pid +%PPID can be used to name the parent process of the pidof program. +.TP +\fB-s\fR +Single shot - this instructs the program to only return one process id. +.SH SEE ALSO +killall5(8)