/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.11
completions/sshow
26 строк
498 B
Ville Skyttä
*: run all shell code through shfmt -s
06 май 2020, 22:54
06 май 2020, 22:54
dbe0ec8
Код
Авторство
О чём код?
# sshow completion -*- shell-script -*- _sshow() { local cur prev words cword _init_completion || return case $prev in -*i) _available_interfaces -a return ;; -*p) _filedir pcap return ;; esac if [[ $cur == -* ]]; then COMPREPLY=($(compgen -W '$(_parse_usage "$1")' -- "$cur")) fi } && complete -F _sshow sshow # ex: filetype=sh