Actually check that grep options exist before adding them to the alias.
authorMoviuro <moviuro+grml@gmail.com>
Thu, 11 Sep 2014 20:40:33 +0000 (22:40 +0200)
committerFrank Terbeck <ft@grml.org>
Thu, 11 Sep 2014 21:02:44 +0000 (23:02 +0200)
etc/zsh/zshrc

index 9ce49ca..295e55d 100644 (file)
@@ -350,8 +350,7 @@ if ls --color=auto / >/dev/null 2>&1; then
 elif ls -G / >/dev/null 2>&1; then
     ls_options=( -G )
 fi
-if grep --help 2> /dev/null | grep -q GNU || \
-   [[ $OSTYPE == freebsd* ]]; then
+if grep --color=auto -q "a" <<< "a"; then
     grep_options=( --color=auto )
 fi