]> git.gsnw.org Git - fping.git/commitdiff
Improve -Q documentation
authorErik Auerswald <auerswal@unix-ag.uni-kl.de>
Sun, 30 Jan 2022 12:30:05 +0000 (13:30 +0100)
committerErik Auerswald <auerswal@unix-ag.uni-kl.de>
Sun, 30 Jan 2022 12:34:11 +0000 (13:34 +0100)
The `-Q, --squiet=SECS` option does not replace the summary
statistics of `-q, --quiets`, but adds interval summary
statistics every SECS seconds to the output.

doc/fping.pod
src/fping.c

index 32bbd64ff1dc442bd35739a6de51eddf8a47f44d..7702df1da07be08da17754ba3a2406d04043288a 100644 (file)
@@ -178,7 +178,8 @@ show ICMP error messages.
 
 =item B<-Q>, B<--squiet>=I<SECS>
 
-Like B<-q>, but show summary results every n seconds.
+Like B<-q>, but additionally show interval summary results every I<SECS>
+seconds.
 
 =item B<-r>, B<--retry>=I<N>
 
index 3deeca6d2d4cf30838ca0df387c3b9d7dc3b4dac..d76b23c88e9b64f4c99aabd3863b611cc00d2082 100644 (file)
@@ -2939,7 +2939,7 @@ void usage(int is_error)
     fprintf(out, "   -N, --netdata      output compatible for netdata (-l -Q are required)\n");
     fprintf(out, "   -o, --outage       show the accumulated outage time (lost packets * packet interval)\n");
     fprintf(out, "   -q, --quiet        quiet (don't show per-target/per-ping results)\n");
-    fprintf(out, "   -Q, --squiet=SECS  same as -q, but show summary every n seconds\n");
+    fprintf(out, "   -Q, --squiet=SECS  same as -q, but add interval summary every SECS seconds\n");
     fprintf(out, "   -s, --stats        print final stats\n");
     fprintf(out, "   -u, --unreach      show targets that are unreachable\n");
     fprintf(out, "   -v, --version      show version\n");