From 37b05c76ccadac0654bec0fc3bb5908b01ffc5d0 Mon Sep 17 00:00:00 2001 From: akanealw Date: Mon, 4 Mar 2024 19:36:53 -0600 Subject: [PATCH] added sudo to df and du --- 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 26dd8c9..419c65a 100755 --- a/alpine/alpine-user-customizations.sh +++ b/alpine/alpine-user-customizations.sh @@ -14,8 +14,8 @@ echo "alias ..='cd ..'" >> ~/.bash_profile echo "alias ...='cd ../..'" >> ~/.bash_profile 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 du='sudo du -h'" >> ~/.bash_profile +echo "alias df='sudo 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