diff --git a/root/.bashrc b/root/.bashrc index 1cb4a8a..f0f3033 100644 --- a/root/.bashrc +++ b/root/.bashrc @@ -7,9 +7,10 @@ fi # alias export LS_OPTIONS='--color=auto' -alias ls='ls -h' -alias ll='ls -lh' -alias l='ls -lAh' +eval "`dircolors`" +alias ls='ls $LS_OPTIONS -h' +alias ll='ls $LS_OPTIONS -lh' +alias l='ls $LS_OPTIONS -lAh' # Some more alias to avoid making mistakes: alias rm='rm -i'