ttyplot

Realtime terminal plotter
git clone git://git.sgregoratto.me/ttyplot
Log | Files | Refs | README | LICENSE

commit 5b6acecebbeacc09d5d9fe6e64c0058ca5e5e518
parent d6a5ec90c742c4765ca16eed814fa61dadb68cd5
Author: Antoni Sawicki <tenox@google.com>
Date:   Wed, 24 Jul 2019 16:57:48 -0700

removed double newlines in help

Diffstat:
Mttyplot.c | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/ttyplot.c b/ttyplot.c @@ -36,13 +36,13 @@ void usage() { printf("Usage:\n ttyplot [-2] [-r] [-c plotchar] [-s softmax] [-m hardmax] [-t title] [-u unit]\n\n" - "-2 read two values and draw two plots, the second one is in reverse video\n\n" - "-r calculate counter rate and divide by measured sample interval\n\n" - "-c character to use for plot line, eg @ # %% . etc\n\n" - "-e character to use for plot error line when value exceeds hardmax (default: e)\n\n" - "-s softmax is an initial maximum value that can grow if data input has larger value\n\n" - "-m hardmax is a hard maximum value, if exceeded error line will be drawn (see -e)\n\n" - "-t title of the plot\n\n" + "-2 read two values and draw two plots, the second one is in reverse video\n" + "-r calculate counter rate and divide by measured sample interval\n" + "-c character to use for plot line, eg @ # %% . etc\n" + "-e character to use for plot error line when value exceeds hardmax (default: e)\n" + "-s softmax is an initial maximum value that can grow if data input has larger value\n" + "-m hardmax is a hard maximum value, if exceeded error line will be drawn (see -e)\n" + "-t title of the plot\n" "-u unit displayed beside vertical bar\n\n"); exit(0); }