From: Matthias Krüger Date: Sat, 15 Jun 2013 15:56:36 +0000 (+0200) Subject: ./all grep: display line of match by default. X-Git-Tag: xonotic-v0.8.0~119^2 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=8868c1fe29d66305c9d6942b9af6163d6051ba94;p=xonotic%2Fxonotic.git ./all grep: display line of match by default. --- diff --git a/misc/tools/all/git.subr b/misc/tools/all/git.subr index aad4a3ad..f7923285 100644 --- a/misc/tools/all/git.subr +++ b/misc/tools/all/git.subr @@ -964,7 +964,7 @@ case "$cmd" in grep) for d in $repos; do if verbose cd "$d0/$d"; then - git grep -I "$@" || true + git grep -In "$@" || true cd "$d0" fi done