We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f6400 commit f3af62bCopy full SHA for f3af62b
tools/bpf/bpftool/bash-completion/bpftool
@@ -1215,6 +1215,17 @@ _bpftool()
1215
;;
1216
esac
1217
1218
+ token)
1219
+ case $command in
1220
+ show|list)
1221
+ return 0
1222
+ ;;
1223
+ *)
1224
+ [[ $prev == $object ]] && \
1225
+ COMPREPLY=( $( compgen -W 'help show list' -- "$cur" ) )
1226
1227
+ esac
1228
1229
1230
} &&
1231
complete -F _bpftool bpftool
0 commit comments