From 781388e53f9cd93d0532882fab808bc3b3b70db0 Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 3 Mar 2024 23:48:07 -0600 Subject: [PATCH] added missing quotes --- alpine/alpine-user-customizations.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/alpine-user-customizations.sh b/alpine/alpine-user-customizations.sh index d91ef2b..62bec37 100755 --- a/alpine/alpine-user-customizations.sh +++ b/alpine/alpine-user-customizations.sh @@ -12,8 +12,8 @@ echo "alias mkdir='mkdir -pv'" >> ~/.bash_profile echo "alias du='du -h'" >> ~/.bash_profile echo "alias df='df -h'" >> ~/.bash_profile echo "alias si='sudo -i'" >> ~/.bash_profile -echo "alias sreboot='sudo reboot" >> ~/.bash_profile -echo "alias spoweroff='sudo poweroff" >> ~/.bash_profile +echo "alias sreboot='sudo reboot'" >> ~/.bash_profile +echo "alias spoweroff='sudo poweroff'" >> ~/.bash_profile echo "alias ports='netstat -tulpna'" >> ~/.bash_profile echo "alias tf='tail -f'" >> ~/.bash_profile echo "alias dc='docker compose'" >> ~/.bash_profile