Messages in this thread |  | | | Date | Tue, 7 Aug 2012 17:05:04 +0100 | | From | Alan Cox <> | | Subject | Re: [PATCH 2/2] perf tools: Support for events bash completion |
| |
> > COMPREPLY=( $( compgen -W '$cmds' -- "$cur" ) ) > > + # List possible events for -e option > > + elif [[ $prev == "-e" && "${COMP_WORDS[1]}" == @(record|stat|top) ]]; then > > + cmds=$(perf list --raw-dump) > > + COMPREPLY=( $( compgen -W '$cmds' -- $cur ) )
Surely $cur should be quoted here...
Alan
|  |