perf tools: Fix the bash completion for listing subcommands of perf
authorYunlong Song <[email protected]>
Wed, 18 Mar 2015 13:35:51 +0000 (21:35 +0800)
committerArnaldo Carvalho de Melo <[email protected]>
Thu, 19 Mar 2015 16:49:38 +0000 (13:49 -0300)
The bash completion does not support listing subcommands for 'perf
--<long option> <TAB>'.

Example:

Before this patch:

 $ perf --debug <TAB>
 $

As shown above, the subcommands of perf does not come out.

After this patch:

 $ perf --debug <TAB>
 annotate       buildid-cache  data           evlist         inject
 kvm            lock           probe          report         script
 test           top            version
 bench          buildid-list   diff           help           kmem
 list           mem            record         sched          stat
 timechart      trace

As shown above, the subcommands of perf can come out now.

Signed-off-by: Yunlong Song <[email protected]>
Tested-by: Arnaldo Carvalho de Melo <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Wang Nan <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/perf-completion.sh

index 3e25d3ea17f9c8ed58094fec3b1973ceffd9279a..7b98ae48f0bfee97b054a13865c146819e839aa9 100644 (file)
@@ -130,7 +130,7 @@ __perf_main ()
        # Skip options backward and find the last perf command
        __perf_prev_skip_opts
        # List perf subcommands or long options
-       if [ $cword -eq 1 ]; then
+       if [ -z $prev_skip_opts ]; then
                if [[ $cur == --* ]]; then
                        cmds=$($cmd --list-opts)
                else