forked from Xfennec/progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.1
112 lines (95 loc) · 1.84 KB
/
cv.1
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.TH CV 1 "September 01, 2014" "cv"
.SH NAME
cv \- Coreutils Viewer
.SH SYNOPSIS
.B cv
[
.B \-qdwmM
] [
.B \-W
.I secs
] [
.B \-c
.I command
] [
.B \-p
.I pid
]
.br
.B cv -v
|
.B \-\-version
.br
.B cv \-h
|
.B \-\-help
.br
.SH DESCRIPTION
This manual page briefly documents the \fBcv\fP command.
.PP
This tool can be described as a Tiny, Dirty, Linux-Only C command
that looks for coreutils basic commands (cp, mv, dd, tar, gzip/gunzip,
cat, etc.) currently running on your system and displays the
percentage of copied data.
It can now also estimate throughput (using flag
.B \-w
).
.SH OPTIONS
.TP
.B \-q (\-\-quiet)
hides all messages
.TP
.B \-d (\-\-debug)
shows all warning/error messages
.TP
.B \-w (\-\-wait)
estimate I/O throughput and ETA (slower display)
.TP
.B \-W (\-\-wait\-delay secs)
wait 'secs' seconds for I/O estimation (implies
.B \-w
)
.TP
.B \-m (\-\-monitor)
loop while monitored processes are still running
.TP
.B \-M (\-\-monitor\-continous)
like monitor but never stop (similar to
.B watch cv
)
.TP
.B \-c (\-\-command cmd)
monitor only this command name (ex: firefox)
.TP
.B \-p (\-\-pid id)
monitor only this numeric process ID (ex: \`pidof firefox\`)
.TP
.B \-v (\-\-version)
show program version and exit
.TP
.B \-h (\-\-help)
display help message and exit
.SH EXAMPLES
Continuously monitor all current and upcoming instances of coreutils commands
.RS
.B watch cv \-q
.RE
See how your download is progressing
.RS
.B watch cv \-wc firefox
.RE
Look at your Web server activity
.RS
.B cv \-c httpd
.RE
Launch and monitor any heavy command using \$\!
.RS
.B cp bigfile newfile & cv \-mp \$\!
.RE
.SH BUGS
Please report bugs at: http://github.com/Xfennec/cv/issues
.SH HOMEPAGE
http://github.com/Xfennec/cv
.SH AUTHOR
This manual page was written by Thomas Zimmermann <[email protected]>,
for the openSUSE project (and may be used by others).