ubase

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

commit cc1eda23d0447ddab31ead59ea333fe340cadabc
parent 5c8cf6925df3b84de94d9d858aab8481ccb9ec5f
Author: sin <sin@2f30.org>
Date:   Sun, 13 Apr 2014 17:30:21 +0100

Add ps manpage

Diffstat:
Aps.1 | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/ps.1 b/ps.1 @@ -0,0 +1,26 @@ +.TH PS 1 ubase-VERSION +.SH NAME +\fBps\fR - Display process status +.SH SYNOPSIS +\fBps\fR [\fB-aAdef\fR] +.SH DESCRIPTION +\fBps\fR displays information about active processes. When given no options, +\fBps\fR prints information about processes of the current user that has a +controlling terminal. +.SH OPTIONS +.TP +\fB-a\fR +Select all processes except both session leaders and processes not +associated with a terminal. +.TP +\fB-A\fR +Select all processes. Identical to \fB-e\fR. +.TP +\fB-d\fR +Select all processes except session leaders. +.TP +\fB-e\fR +Select all processes. Identical to \fB-A\fR. +.TP +\fB-f\fR +Do full-format listing.