aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bash/bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc
index 5e7d37d0..2e95c73e 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -46,7 +46,7 @@ PS2='...'
LS_OPTS=
if ls --help | grep -- --color &>/dev/null; then
hash dircolors &>/dev/null && eval "$(dircolors -b)"
- LS_OPTS="$LS_OPTS --color"
+ LS_OPTS="$LS_OPTS --color=auto"
fi
alias ls="ls $LS_OPTS"
@@ -63,7 +63,7 @@ if grep --help | grep -- --exclude-dir &>/dev/null; then
done
fi
if grep --help | grep -- --color &>/dev/null; then
- GREP_OPTS="$GREP_OPTS --color"
+ GREP_OPTS="$GREP_OPTS --color=auto"
fi
alias grep="grep $GREP_OPTS"