/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.17.0
completions/brctl
51 строка
1 KB
Koichi Murase
fix(brctl): fix quoting of the command name (#1296)
30 дек 2024, 15:21
Не верифицирован
30 дек 2024, 15:21
3201497
Код
Авторство
О чём код?
# bash completion for brctl -*- shell-script -*- _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 # ex: filetype=sh