From 32a7eb03c5670a0143bfbd71537dc57a3af1fb47 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Fri, 8 Mar 2019 07:52:38 -0600 Subject: [PATCH] Update insert_authorized_keys.sh --- insert_authorized_keys.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insert_authorized_keys.sh b/insert_authorized_keys.sh index 64cb9d0..dd87b4b 100755 --- a/insert_authorized_keys.sh +++ b/insert_authorized_keys.sh @@ -6,4 +6,4 @@ set -x mkdir -p "$HOME/.ssh" for f in *.pub; do (printf %s "$(< ${f})"; echo); done >> "$HOME/.ssh/authorized_keys" cp "$HOME/.ssh/authorized_keys" "$HOME/.ssh/authorized_keys.bak" -sort "$HOME/.ssh/authorized_keys" | uniq | tee "$HOME/.ssh/authorized_keys" \ No newline at end of file +sort "$HOME/.ssh/authorized_keys.bak" | uniq | tee "$HOME/.ssh/authorized_keys" \ No newline at end of file