From 5d7c4224740e404365a7354f42de90601b54695c Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 3 Mar 2024 23:45:37 -0600 Subject: [PATCH] added more sudo commands --- alpine/alpine-user-customizations.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alpine/alpine-user-customizations.sh b/alpine/alpine-user-customizations.sh index 199cd7a..d91ef2b 100755 --- a/alpine/alpine-user-customizations.sh +++ b/alpine/alpine-user-customizations.sh @@ -12,6 +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 ports='netstat -tulpna'" >> ~/.bash_profile echo "alias tf='tail -f'" >> ~/.bash_profile echo "alias dc='docker compose'" >> ~/.bash_profile