/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.3
completions/rtcwake
40 строк
972 B
Guillaume Rousse
rename 'contrib' directory to 'completions'
12 сен 2010, 18:42
12 сен 2010, 18:42
cb7fc2f
Код
Авторство
О чём код?
# bash completion for rtcwake have rtcwake && _rtcwake() { COMPREPLY=() local cur prev split=false _get_comp_words_by_ref cur prev _split_longopt && split=true case "$prev" in --help|-h|--version|-V|--seconds|-s|--time|-t) return 0 ;; --mode|-m) COMPREPLY=( $( compgen -W 'standby mem disk on no off' -- "$cur" ) ) return 0 ;; --device|-d) COMPREPLY=( $( command ls -d /dev/rtc?* 2>/dev/null ) ) COMPREPLY=( $( compgen -W '${COMPREPLY[@]#/dev/}' -- "$cur" ) ) return 0 ;; esac $split && return 0 COMPREPLY=( $( compgen -W '--device --local --mode --seconds --time --utc \ --verbose --version --help' -- "$cur" ) ) } && complete -F _rtcwake rtcwake # Local variables: # mode: shell-script # sh-basic-offset: 4 # sh-indent-comment: t # indent-tabs-mode: nil # End: # ex: ts=4 sw=4 et filetype=sh