-
Notifications
You must be signed in to change notification settings - Fork 0
/
vproc.man
90 lines (90 loc) · 1.33 KB
/
vproc.man
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.TH VPROC 1
.SH NAME
vproc \- graphical version of ps(1)
.SH SYNOPSIS
.B vproc
[
.I -ahinr
]
[
.I -d seconds
]
[
.I -s sortfmt
]
.SH DESCRIPTION
.I Vproc
is a graphical tool that displays information about processes, it
scans the /proc file system every 5 seconds.
.PP
The
.I \-a
flag causes vproc to also display the arguments passed to each process.
.PP
The
.I \-d
flag specifies the sleep interval between each poll.
.PP
The
.I \-h
flag prints a usage messsage to standard error.
.PP
The
.I \-i
flag causes vproc to sort the list in a reversed order.
.PP
The
.I \-n
flag causes vproc to also display the note group of each process.
.PP
The
.I \-r
flag causes vproc to display the elapsed real time for each process.
.PP
The -s flag determines how the list should be sorted. If the flag is
not specified it will default to
.I
p
, which is the same behaviour as ps(1).
The
.I sortfmt
is expected to be one or more of the following:
.TF .
.TP
.B p
sort by the PID
.TP
.B U
sort by username
.TP
.B u
sort by user time
.TP
.B s
sort by system time
.TP
.B r
sort by real time
.TP
.B m
sort by memory usage
.TP
.B S
sort by the process state
.TP
.B c
sort by command name
.PD
.SH EXAMPLES
.PP
Reverse sort the list (so that the highest PID is at the top) and
sleep only one second between each poll.
.EX
vproc -i -d 1
.EE
.SH SEE ALSO
.EX
ps(1)
.EE
.SH BUGS
Yes.