Commit 02000b55 authored by Roman Gushchin's avatar Roman Gushchin Committed by Daniel Borkmann

bpftool: add bash completion for cgroup tree command

This commit adds a bash completion to the bpftool cgroup tree
command.
Signed-off-by: default avatarRoman 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: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 7d31a0a1
...@@ -414,6 +414,10 @@ _bpftool() ...@@ -414,6 +414,10 @@ _bpftool()
_filedir _filedir
return 0 return 0
;; ;;
tree)
_filedir
return 0
;;
attach|detach) attach|detach)
local ATTACH_TYPES='ingress egress sock_create sock_ops \ local ATTACH_TYPES='ingress egress sock_create sock_ops \
device bind4 bind6 post_bind4 post_bind6 connect4 \ device bind4 bind6 post_bind4 post_bind6 connect4 \
...@@ -455,7 +459,7 @@ _bpftool() ...@@ -455,7 +459,7 @@ _bpftool()
*) *)
[[ $prev == $object ]] && \ [[ $prev == $object ]] && \
COMPREPLY=( $( compgen -W 'help attach detach \ COMPREPLY=( $( compgen -W 'help attach detach \
show list' -- "$cur" ) ) show list tree' -- "$cur" ) )
;; ;;
esac esac
;; ;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment