
On this page you find all important commands for the CLI tool {. If the
command you are looking for is missing please ask our AI.
{
List of commands for {:
-
ttyplot:tldr:4d925 ttyplot: Use a while loop to continuously plot random values.$ { while ${true}; do echo ${$RANDOM}; sleep ${1}; done } | ttyplottry on your machineexplain 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 machineexplain this command
-
ttyplot:tldr:a1991 ttyplot: Plot the values `1`, `2` and `3` (`cat` prevents ttyplot to exit).$ { echo ${1 2 3}; cat } | ttyplottry on your machineexplain this command