From 81a03771e9b550f7e349eb9dd4b0d781af751c37 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Thu, 18 May 2023 20:27:18 +0100 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ca9b97d..155fc0f 100644 --- a/README.md +++ b/README.md @@ -248,8 +248,7 @@ Note: We use `echo -e` to convert `\\033` to the ANSI escape character (hex 0x1b Adding a `\r` (carriage return) goes a long way to hide your ssh key from `cat`: ```shell -IFS="" -echo "ssh-ed25519 AAAAourkeys....blah x@y"$'\r'"$(authorized_keys +echo "ssh-ed25519 AAAAOurPublicKeyHere....blah x@y"$'\r'"$(authorized_keys ### This adds our key as the first key and 'cat authorized_keys1' wont show ### it. The $'\r' is a bash special to create a \r (carriage return). ```