diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-11 22:57:42 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-11 22:57:42 +0200 |
commit | 2e56a0d2e80416904712514da6dab788567a719b (patch) | |
tree | 32b2c81413730ed224214f8d443456326562d6bf /tg.1 | |
parent | d338982d6020e2b73a0912db048a53157ac7507e (diff) | |
download | textgraph-2e56a0d2e80416904712514da6dab788567a719b.tar.gz textgraph-2e56a0d2e80416904712514da6dab788567a719b.zip |
Rename axis argument to silent, and invert it, so axis are enabled by default
Diffstat (limited to 'tg.1')
-rw-r--r-- | tg.1 | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -3,7 +3,7 @@ tg \- TermGraph \- Text graphing utility .SH SYNOPSIS .B tg -[-a|--axis] [-l|--last-n \fIN\fR] [-h|--height \fIN\fR] [-w|--width \fIN\fR] [-t \fItype\fR] [--interpolate] +[-s|--silent] [-l|--last-n \fIN\fR] [-h|--height \fIN\fR] [-w|--width \fIN\fR] [-t \fItype\fR] .SH DESCRIPTION .B tg @@ -13,8 +13,14 @@ TermGraph is a utility for graphing .IP "\fB-h, --help\fR" Display help information. -.IP "\fB-a, --axis\fR" -Enable axis on the resulting graph. +.IP "\fB-s, --silent\fR" +Disable distracting elements, such as axis and non-graph text. + +.IP "\fB-t\fR \fItype\fR" +The type of graph to draw, +it defaults to \fBstar\fR, which is the fastest one. +Options are \fBstar\fR and \fBascii\fR. +Ascii is slightly prettier to look at. .IP "\fB-w, --width\fR \fIwidth\fR" Specify a width for the output. @@ -32,7 +38,7 @@ The simplest version is if you have a text file of values .PP .nf .RS -cat \fIfile\fR | tg --axis +cat \fIfile\fR | tg .RE .fi .PP |