/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
completions-core/brctl.bash
49 строк
1 KB
Ville Skyttä
chore: remove most editor mode config comments
01 июн 2026, 21:26
01 июн 2026, 21:26
bdeca44
Код
Авторство
О чём код?
# bash completion for brctl _comp_cmd_brctl__interfaces() { _comp_compgen_split -- "$( "${1:-brctl}" show ${2:+"$2"} 2>/dev/null | _comp_awk \ '(NR == 1) { next }; (/^\t/) { print $1; next }; { print $4 }' )" } _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 addbr) ;; *) _comp_compgen_split -- "$("$1" show | _comp_awk '(NR>1 && !/^\t/) {print $1}')" ;; esac ;; 3) case $command in addif) _comp_compgen_available_interfaces ;; delif) _comp_cmd_brctl__interfaces "$1" "$prev" ;; stp) _comp_compgen -- -W 'on off' ;; esac ;; esac } && complete -F _comp_cmd_brctl brctl