Man page documentation of -t mode.
Compile time warning fixes. Markus Koschany <apo@gambaru.de>
This commit is contained in:
4
iftop.8
4
iftop.8
@@ -100,6 +100,10 @@ bitmasking.
|
|||||||
\fB-c\fP \fIconfig file\fP
|
\fB-c\fP \fIconfig file\fP
|
||||||
Specifies an alternate config file. If not specified, iftop will use
|
Specifies an alternate config file. If not specified, iftop will use
|
||||||
\fB~/.iftoprc\fP if it exists. See below for a description of config files
|
\fB~/.iftoprc\fP if it exists. See below for a description of config files
|
||||||
|
.TP
|
||||||
|
\fB-t\fP \fItext output mode\fP
|
||||||
|
Use text interface without ncurses and print the output to STDOUT.
|
||||||
|
|
||||||
|
|
||||||
.SH DISPLAY
|
.SH DISPLAY
|
||||||
|
|
||||||
|
|||||||
2
iftop.c
2
iftop.c
@@ -145,7 +145,7 @@ void tick(int print) {
|
|||||||
if(t - last_timestamp >= RESOLUTION) {
|
if(t - last_timestamp >= RESOLUTION) {
|
||||||
analyse_data();
|
analyse_data();
|
||||||
if (options.no_curses) {
|
if (options.no_curses) {
|
||||||
if (!options.timed_output || options.timed_output && t - first_timestamp >= options.timed_output) {
|
if (!options.timed_output || (options.timed_output && t - first_timestamp >= options.timed_output)) {
|
||||||
tui_print();
|
tui_print();
|
||||||
if (options.timed_output) {
|
if (options.timed_output) {
|
||||||
finish(SIGINT);
|
finish(SIGINT);
|
||||||
|
|||||||
Reference in New Issue
Block a user