From dbd389c20266e007e2a72527cc4c244a1732a0be Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 10 Mar 2024 10:51:22 -0500 Subject: [PATCH] added more aliases for alpine --- alpine/alpine-user-customizations.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alpine/alpine-user-customizations.sh b/alpine/alpine-user-customizations.sh index f503971..21c23dd 100755 --- a/alpine/alpine-user-customizations.sh +++ b/alpine/alpine-user-customizations.sh @@ -21,6 +21,9 @@ 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 apkupy='sudo apk update && sudo apk upgrade'" >> ~/.bash_profile +echo "alias apkiy='sudo apk add'" >> ~/.bash_profile +echo "alias apkrpy='sudo apk del'" >> ~/.bash_profile echo "alias dc='docker compose'" >> ~/.bash_profile echo "alias dcup='docker compose up -d'" >> ~/.bash_profile echo "alias dcdown='docker compose down'" >> ~/.bash_profile