/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.14.0
completions/synclient
24 строки
581 B
Koichi Murase
style: call `awk` through `_comp_awk`
28 ноя 2023, 12:00
28 ноя 2023, 12:00
8372459
Код
Авторство
О чём код?
# bash completion for synclient(1) -*- shell-script -*- _comp_cmd_synclient() { local cur prev words cword comp_args _comp_initialize -n = -- "$@" || return case $prev in -\? | -h | -V) return ;; esac if [[ $cur == -* ]]; then _comp_compgen_usage elif [[ $cur != *=?* ]]; then _comp_compgen_split -S = -- "$("$1" -l 2>/dev/null | _comp_awk '/^[ \t]/ { print $1 }')" compopt -o nospace fi } && complete -F _comp_cmd_synclient synclient # ex: filetype=sh