From 56942fb9454f76801410a495514c8f3e9cbf913c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 18 Apr 2025 06:10:31 +0300 Subject: [PATCH] ttyplot: fix page (#16184) Co-authored-by: K.B.Dharun Krishna --- pages/linux/ttyplot.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/linux/ttyplot.md b/pages/linux/ttyplot.md index db8881acdb..34592c72a3 100644 --- a/pages/linux/ttyplot.md +++ b/pages/linux/ttyplot.md @@ -3,13 +3,13 @@ > A realtime plotting utility for the command-line with data input from `stdin`. > More information: . -- Plot the values `1`, `2` and `3` (`cat` prevents ttyplot to exit): +- Plot the values `1`, `2` and `3` (Note: `cat` prevents `ttyplot` from exiting): -`{ echo {{1 2 3}}; cat } | ttyplot` +`{ echo {{1 2 3}}; cat; } | ttyplot` - Set a specific title and unit: -`{ echo {{1 2 3}}; cat } | ttyplot -t {{title}} -u {{unit}}` +`{ echo {{1 2 3}}; cat; } | ttyplot -t {{title}} -u {{unit}}` - Use a while loop to continuously plot random values: