From 9aa7745dc7dd328c72f2d94485d8f31ab2efb564 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 4 Feb 2025 02:37:24 +0200 Subject: [PATCH] stty: add examples (#15648) --- pages/common/stty.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/common/stty.md b/pages/common/stty.md index 820ab25933..a605b06547 100644 --- a/pages/common/stty.md +++ b/pages/common/stty.md @@ -18,3 +18,11 @@ - Reset all modes to reasonable values for the current terminal: `stty sane` + +- Switch between raw and normal mode: + +`stty {{raw|cooked}}` + +- Turn character echoing off or on: + +`stty {{-echo|echo}}`