system: Default .bashrc uses '--color=auto' for grep and ls.
Reported by Tobias Geerinckx-Rice <me@tobias.gr> and Björn Höfling <bjoern.hoefling@bjoernhoefling.de>. * gnu/system/shadow.scm (default-skeletons)["bashrc"]: Use '--color=auto' instead of '--color'.
This commit is contained in:
parent
42226063f6
commit
9fd877247d
|
@ -178,9 +178,9 @@ then
|
||||||
else
|
else
|
||||||
PS1='\\u@\\h \\w\\$ '
|
PS1='\\u@\\h \\w\\$ '
|
||||||
fi
|
fi
|
||||||
alias ls='ls -p --color'
|
alias ls='ls -p --color=auto'
|
||||||
alias ll='ls -l'
|
alias ll='ls -l'
|
||||||
alias grep='grep --color'\n"))
|
alias grep='grep --color=auto'\n"))
|
||||||
(zlogin (plain-file "zlogin" "\
|
(zlogin (plain-file "zlogin" "\
|
||||||
# Honor system-wide environment variables
|
# Honor system-wide environment variables
|
||||||
source /etc/profile\n"))
|
source /etc/profile\n"))
|
||||||
|
|
Loading…
Reference in New Issue