/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2
completions/dhclient
28 строк
608 B
Ville Skyttä
*: Line continuation, whitespace, and compgen -W ... -- "$cur" quoting cleanups.
18 фев 2013, 01:49
18 фев 2013, 01:49
6185297
Код
Авторство
О чём код?
# bash completion for dhclient -*- shell-script -*- _dhclient() { local cur prev words cword _init_completion || return case $prev in -cf|-lf|-pf|-sf) _filedir return 0 ;; -s) _known_hosts_real "$cur" return 0 ;; esac if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '-p -d -q -1 -r -lf -pf -cf -sf -s -g -n -nw -w' -- "$cur" ) ) else _available_interfaces fi } && complete -F _dhclient dhclient # ex: ts=4 sw=4 et filetype=sh