Go termeter

From wikinotes

Very interesting tool to create dynamic charts on the commandline.
Built with very specific use case in mind.

Documentation

github https://github.com/atsaki/termeter

Install

go get github.com/atsaki/termeter/cmd/termeter

Usage

Line

column-names on first line, then y-val for each x-val.

echo '
a b c    # chart/line names
1 2 5    # values at x=0
1 5 10   # values at x=1
1 7 15   # values at x=2
1 9 20   # ...
1 11 25
1 13 30
' | termeter -d ' '

Counter

echo '
a 2 1
a 5 1
a 3 2
'