ttyplot

Realtime plotting utility for terminal with data input from stdin

brewmacoslinux
Try with needOr install directly
Source

About

Realtime plotting utility for terminal with data input from stdin

Commands

ttyplot

Examples

Plot CPU usage in realtime$ while true; do ps aux | awk 'NR>1 {sum+=$3} END {print sum}'; sleep 1; done | ttyplot -t 'CPU Usage'
Plot temperature sensor readings$ sensors | grep 'Core 0' | awk '{print $3}' | ttyplot -t 'Temperature'
Monitor network bandwidth$ while true; do cat /proc/net/dev | grep eth0 | awk '{print $2}'; sleep 1; done | ttyplot -t 'Network Traffic'