/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.3
completions/_hwclock
26 строк
622 B
Ville Skyttä
hwclock,ionice,rtcwake: Deprecate in favor of util-linux ones (Debian: #737672)
08 фев 2014, 17:00
08 фев 2014, 17:00
e4b1740
Код
Авторство
О чём код?
# hwclock(8) completion -*- shell-script -*- # Use of this file is deprecated. Upstream completion is available in # util-linux >= 2.23, use that instead. _hwclock() { local cur prev words cword _init_completion || return case $prev in -h|--help|-V|--version|--date|--epoch) return ;; -f|--rtc|--adjfile) _filedir return ;; esac COMPREPLY=( $( PATH="$PATH:/sbin" compgen -W '$( _parse_help "$1" )' -- "$cur" ) ) } && complete -F _hwclock hwclock # ex: ts=4 sw=4 et filetype=sh