From 8afa0269f11404c0f01766ceab5e9bf130f5a06d Mon Sep 17 00:00:00 2001 From: Joshua <1041261+JoshuaACasey@users.noreply.github.com> Date: Sun, 10 May 2026 03:34:46 -0500 Subject: [PATCH] Add alias to fix SSH permissions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit just a simple ssh permission fix alias so that i don't have to google it every damn time 😆 --- .bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bashrc b/.bashrc index 5f7d119..98d432e 100644 --- a/.bashrc +++ b/.bashrc @@ -232,6 +232,9 @@ alias docker-clean=' \ docker network prune -f ; \ docker volume prune -f ' +# alias to fix ~/.ssh permissions +alias sshperms='cd ~ && chmod 600 ~/.ssh/* && chmod 700 ~/.ssh && chmod 644 ~/.ssh/*.pub' + ####################################################### # SPECIAL FUNCTIONS #######################################################