diff options
author | Karel Zak | 2013-04-05 14:58:07 +0200 |
---|---|---|
committer | Karel Zak | 2013-04-05 14:58:07 +0200 |
commit | 20da58084a68b118b15fa01228192463b61fa28f (patch) | |
tree | 07beea113d5a68749264ad59e4d17fbc4bf9fe1d /bash-completion/rtcwake | |
parent | Merge branch 'shell-completion' of git://github.com/kerolasa/lelux-utiliteetit (diff) | |
download | kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.tar.gz kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.tar.xz kernel-qcow2-util-linux-20da58084a68b118b15fa01228192463b61fa28f.zip |
bash-completion: rename shell-completion -> bash-completion
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'bash-completion/rtcwake')
-rw-r--r-- | bash-completion/rtcwake | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/bash-completion/rtcwake b/bash-completion/rtcwake new file mode 100644 index 000000000..1f38df827 --- /dev/null +++ b/bash-completion/rtcwake @@ -0,0 +1,40 @@ +_rtcwake_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-d'|'--device') + local RTC_DEVS + RTC_DEVS=$(cd /sys/class/rtc/ && echo *) + COMPREPLY=( $(compgen -W "$RTC_DEVS" -- $cur) ) + return 0 + ;; + '-m'|'--mode') + COMPREPLY=( $(compgen -W "standby mem disk off no on disable show" -- $cur) ) + return 0 + ;; + '-s'|'--seconds') + COMPREPLY=( $(compgen -W "seconds" -- $cur) ) + return 0 + ;; + '-t'|'--time') + COMPREPLY=( $(compgen -W "time_t" -- $cur) ) + return 0 + ;; + esac + OPTS="-d --device + -n --dry-run + -l --local + -m --mode + -s --seconds + -t --time + -u --utc + -v --verbose + -h --help + -V --version" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 +} +complete -F _rtcwake_module rtcwake |