From e8f2049576c532bebc2997e9e94f2c435f5a0935 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Thu, 18 May 2023 20:32:45 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4ab522..49f4dd4 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ ANSI escape characters or a simple `\r` ([carriage return](https://www.hahwul.co Hide the last command (example: `id`) in `~/.bashrc`: ```sh -echo -e "id #\\033[2K\\033[1A" >>~/.bashrc +echo -e "id #\\033[2K\\033[1A" >>~/.bashrc ### The ANSI escape sequence \\033[2K erases the line. The next sequence \\033[1A ### move the cursor 1 line up. ### The '#' after the command 'id' is needed so that bash still executes the 'id'