From: Jens Axboe Date: Mon, 30 Jan 2006 20:35:31 +0000 (+0100) Subject: [PATCH] btrace: don't be quiet by default, and fix -h parameter X-Git-Tag: blktrace-0.99.1~92 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=eea01dfc2e0eb1521dbbd481ab5a3e660e6cb588;p=blktrace.git [PATCH] btrace: don't be quiet by default, and fix -h parameter --- diff --git a/btrace b/btrace index 38ea1ce..d8a3154 100755 --- a/btrace +++ b/btrace @@ -8,11 +8,11 @@ TRACEOPTS="" PARSEOPTS="-b100000" -SUMMARIZE="-q" # quiet (no dev/cpu summary by default) +SUMMARIZE="" USAGE="Usage: btrace [-s] [-t] [-S] [-w N] [-a ...] ..." DIRNAME=`dirname $0` -while getopts "a:stSw:" c +while getopts "a:stSw:h" c do case $c in a) TRACEOPTS=$TRACEOPTS" -a "$OPTARG" ";;