From: Moviuro Date: Thu, 14 Jan 2016 20:57:41 +0000 (+0100) Subject: zshrc: Add comments about the ls_ and grep_options we set X-Git-Tag: v0.15.0~4^2~2 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=2735a118643b1cdbea1928c9f726e706d7d6c604 zshrc: Add comments about the ls_ and grep_options we set --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 451b5dd..afcb5b7 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -431,8 +431,11 @@ ZSH_NO_DEFAULT_LOCALE=${ZSH_NO_DEFAULT_LOCALE:-0} typeset -ga ls_options typeset -ga grep_options + +# Colors on GNU ls(1) if ls --color=auto / >/dev/null 2>&1; then ls_options+=( --color=auto ) +# Colors on FreeBSD and OSX ls(1) elif ls -G / >/dev/null 2>&1; then ls_options+=( -G ) fi @@ -442,6 +445,7 @@ if ls -v / >/dev/null 2>&1; then ls_options+=( -v ) fi +# Color on GNU and FreeBSD grep(1) if grep --color=auto -q "a" <<< "a" >/dev/null 2>&1; then grep_options+=( --color=auto ) fi