From: Frank Terbeck Date: Mon, 15 Sep 2014 12:34:51 +0000 (+0200) Subject: zshrc: Send error output to devnull in grep-option detection X-Git-Tag: v0.10.0~10 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=38316b5764b899a4a60ffdafcfa1b7aec34eaf80 zshrc: Send error output to devnull in grep-option detection Signed-off-by: Frank Terbeck --- diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 4eb1b30..c41cdd7 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -358,7 +358,7 @@ if ls --color=auto / >/dev/null 2>&1; then elif ls -G / >/dev/null 2>&1; then ls_options=( -G ) fi -if grep --color=auto -q "a" <<< "a"; then +if grep --color=auto -q "a" <<< "a" >/dev/null 2>&1; then grep_options=( --color=auto ) fi