bpftool: add bash completion for cgroup tree command
authorRoman Gushchin <guro@fb.com>
Fri, 6 Jul 2018 21:28:16 +0000 (14:28 -0700)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 6 Jul 2018 23:38:38 +0000 (01:38 +0200)
This commit adds a bash completion to the bpftool cgroup tree
command.

Signed-off-by: Roman Gushchin <guro@fb.com>
Cc: Jakub Kicinski <jakub.kicinski@netronome.com>
Cc: Quentin Monnet <quentin.monnet@netronome.com>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Alexei Starovoitov <ast@kernel.org>
Acked-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
tools/bpf/bpftool/bash-completion/bpftool

index fffd76f4998b5e9e5e0e1825e17ac3ccb4c74c66..ce0bc0cda361beb71f2e156043f21993f6b4c4e0 100644 (file)
@@ -414,6 +414,10 @@ _bpftool()
                     _filedir
                     return 0
                     ;;
+               tree)
+                   _filedir
+                   return 0
+                   ;;
                 attach|detach)
                     local ATTACH_TYPES='ingress egress sock_create sock_ops \
                         device bind4 bind6 post_bind4 post_bind6 connect4 \
@@ -455,7 +459,7 @@ _bpftool()
                 *)
                     [[ $prev == $object ]] && \
                         COMPREPLY=( $( compgen -W 'help attach detach \
-                            show list' -- "$cur" ) )
+                            show list tree' -- "$cur" ) )
                     ;;
             esac
             ;;