[PATCH] trace-cmd list: Show events in bash completion
Steven Rostedt <[email protected]> Tue, 8 Apr 2025 11:37:04 -0400
| Newsgroups | org.kernel.vger.linux-trace-devel |
|---|---|
| Message-ID | <[email protected]> |
From: "Steven Rostedt (Google)" <[email protected]> Even though trace-cmd list -e shows the events, there's several times where it is useful to see a format of an event that is known, and having tab completion for those events would be useful. Signed-off-by: Steven Rostedt (Google) <[email protected]> --- tracecmd/trace-cmd.bash | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tracecmd/trace-cmd.bash b/tracecmd/trace-cmd.bash index d7816bcf..ee7c79a2 100644 --- a/tracecmd/trace-cmd.bash +++ b/tracecmd/trace-cmd.bash @@ -84,6 +84,12 @@ __trace_cmd_list_complete() sed -e 's/.*\(-.\).*/\1/') COMPREPLY=( $(compgen -W "${cmds}" -- "${cur}") ) ;; + -e) + local list=$(trace-cmd list -e "$cur") + local events=$(for e in $list; do echo ${e/*:/}; done | sort -u) + local systems=$(for s in $list; do echo ${s/:*/:}; done | sort -u) + COMPREPLY=( $(compgen -W "all ${events} ${systems}" -- "${cur}") ) + ;; *) size=${#words[@]} if [ $size -gt 3 ]; then -- 2.47.2