X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=extras%2Flttng-bash_completion;h=bff8df724276992d02d714e31ebc4b28d4380b80;hp=cc8155734a4df0dbfae5743d8a37646ca9439f95;hb=4a096a5baf467a5c0c1346b759b7c3ac43125ff2;hpb=bd2cf8f34fcf170f372cb6b7e524f1287bf65305 diff --git a/extras/lttng-bash_completion b/extras/lttng-bash_completion index cc8155734..bff8df724 100644 --- a/extras/lttng-bash_completion +++ b/extras/lttng-bash_completion @@ -16,7 +16,12 @@ # _lttng_complete_sessions() { - # TODO, maybe have a lttng list --simple or something like that + # TODO + # This code does nothing for now. When there is a mecanism to get the + # existing sessions, use it to fill the sessions variable. + local sessions + sessions="" + COMPREPLY=( $(compgen -W "${sessions}" -- $cur) ) return } @@ -181,6 +186,9 @@ _lttng_cmd_list() { COMPREPLY=( $(compgen -W "${list_opts}" -- $cur) ) return ;; + *) + _lttng_complete_sessions + return esac } @@ -193,6 +201,10 @@ _lttng_cmd_setsession() { COMPREPLY=( $(compgen -W "${set_session_opts}" -- $cur) ) return ;; + *) + _lttng_complete_sessions + return + ;; esac }