[PATCH 4/9] tip-urgent-count: get rid of an unneeded subshell

From: Uwe Kleine-KÃnig
Date: Thu Dec 03 2009 - 17:26:37 EST


Signed-off-by: Uwe Kleine-KÃnig <u.kleine-koenig@xxxxxxxxxxxxxx>
---
.tip/bin/tip-urgent-count | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/.tip/bin/tip-urgent-count b/.tip/bin/tip-urgent-count
index 7252187..fd46933 100755
--- a/.tip/bin/tip-urgent-count
+++ b/.tip/bin/tip-urgent-count
@@ -11,7 +11,7 @@ for N in $URGENT; do
done

echo "-------------------------"
-printf "%20s: %3d\n" "TOTAL" $(git log --pretty=oneline --no-merges $(echo $URGENT | sed 's/^/linus../g') | wc -l)
+printf "%20s: %3d\n" "TOTAL" $(git log --pretty=oneline --no-merges $URGENT ^linus | wc -l)

echo

--
1.6.5.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/