[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1259879084-20147-4-git-send-email-u.kleine-koenig@pengutronix.de>
Date: Thu, 3 Dec 2009 23:24:39 +0100
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: Ingo Molnar <mingo@...e.hu>
Cc: Thomas Gleixner <tglx@...utronix.de>,
"H. Peter Anvin" <hpa@...or.com>, linux-kernel@...r.kernel.org
Subject: [PATCH 4/9] tip-urgent-count: get rid of an unneeded subshell
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
---
.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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists