https://github.com/patatetom/ttybarchart
Horizontal bar chart in console with bash
https://github.com/patatetom/ttybarchart
bash chart console graph tty
Last synced: 2 months ago
JSON representation
Horizontal bar chart in console with bash
- Host: GitHub
- URL: https://github.com/patatetom/ttybarchart
- Owner: patatetom
- License: gpl-3.0
- Created: 2017-02-16T08:38:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-17T16:09:45.000Z (over 9 years ago)
- Last Synced: 2025-03-10T23:11:19.340Z (over 1 year ago)
- Topics: bash, chart, console, graph, tty
- Language: Shell
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ttybarchart
Horizontal bar chart in console with bash
```bash
$ ttybarchart <<<2015$'\t'50
2015 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 50
$ echo -e "2015\t50\n2016\t100" | ttybarchart
2015 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 50
2016 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 100
$ cat labels.values.tsv
2015 50
2016 100
2017 150
$ ttybarchart labels.values.tsv
2015 ■■■■■■■■■■■■■■■■■■■■■■■ 50
2016 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 100
2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 150
$ sort -r labels.values.tsv | ttybarchart
2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 150
2016 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 100
2015 ■■■■■■■■■■■■■■■■■■■■■■■ 50
$ zgrep -h 'GET /application/ ' /var/log/apache2/access.log* |
grep -o '../Feb/2017' |
sort |
uniq -c |
awk '{print $2"\t"$1}' |
ttybarchart
02/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 36
03/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 30
06/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 40
07/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 25
08/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■ 17
09/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 21
10/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 42
13/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 33
14/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 22
15/Feb/2017 ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ 22
16/Feb/2017 ■■■■■■ 4
```