| Server IP : 104.21.84.107 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# bash completion for brctl -*- shell-script -*-
_comp_cmd_brctl()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local command=${words[1]}
case $cword in
1)
_comp_compgen -- -W "addbr delbr addif delif setageing
setbridgeprio setfd sethello setmaxage setpathcost setportprio
show showmacs showstp stp"
;;
2)
case $command in
show) ;;
*)
_comp_compgen_split -- "$("$1" show |
_comp_awk 'NR>1 {print $1}')"
;;
esac
;;
3)
case $command in
addif | delif)
_comp_compgen_configured_interfaces
;;
stp)
_comp_compgen -- -W 'on off'
;;
esac
;;
esac
} &&
complete -F _comp_cmd_brctl -o default brctl
# ex: filetype=sh