From 5a814c4815c4dabc29aa8a51be54e2b646638c2f Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 3 Mar 2024 23:41:41 -0600 Subject: [PATCH] added alias --- alpine/alpine-user-customizations.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/alpine-user-customizations.sh b/alpine/alpine-user-customizations.sh index 462d0f4..199cd7a 100755 --- a/alpine/alpine-user-customizations.sh +++ b/alpine/alpine-user-customizations.sh @@ -11,6 +11,7 @@ echo "alias grep='grep --color'" >> ~/.bash_profile 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 ports='netstat -tulpna'" >> ~/.bash_profile echo "alias tf='tail -f'" >> ~/.bash_profile echo "alias dc='docker compose'" >> ~/.bash_profile @@ -29,4 +30,3 @@ git config --global credential.helper store git config --global user.name "akanealw" git config --global user.email "akanealw@gmail.com" git config --global init.defaultBranch main -