Forrest logo
back to context overview

ttyplot

List of commands for ttyplot:

  • ttyplot:tldr:4d925 ttyplot: Use a while loop to continuously plot random values.
    $ { while ${true}; do echo ${$RANDOM}; sleep ${1}; done } | ttyplot
    try on your machine
    explain this command
  • ttyplot:tldr:991e2 ttyplot: Set a specific title and unit.
    $ { echo ${1 2 3}; cat } | ttyplot -t ${title} -u ${unit}
    try on your machine
    explain this command
  • ttyplot:tldr:a1991 ttyplot: Plot the values `1`, `2` and `3` (`cat` prevents ttyplot to exit).
    $ { echo ${1 2 3}; cat } | ttyplot
    try on your machine
    explain this command
  • ttyplot:tldr:c258b ttyplot: Parse the output from `ping` and visualize it.
    $ ping ${8-8-8-8} | sed -u '${s-^-*time=--g; s- ms--g}' | ttyplot -t "${ping to 8-8-8-8}" -u ${ms}
    try on your machine
    explain this command
back to context overview