diff options
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/Makemodule.am | 3 | ||||
| -rw-r--r-- | bash-completion/lsclocks | 48 |
2 files changed, 51 insertions, 0 deletions
diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index ac8926f2d0..2763895e89 100644 --- a/bash-completion/Makemodule.am +++ b/bash-completion/Makemodule.am @@ -347,5 +347,8 @@ endif if BUILD_ENOSYS dist_bashcompletion_DATA += bash-completion/enosys endif +if BUILD_LSCLOCKS +dist_bashcompletion_DATA += bash-completion/lsclocks +endif endif # BUILD_BASH_COMPLETION diff --git a/bash-completion/lsclocks b/bash-completion/lsclocks new file mode 100644 index 0000000000..bd81d88bc2 --- /dev/null +++ b/bash-completion/lsclocks @@ -0,0 +1,48 @@ +_lsclocks_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + + case $prev in + '-J'|'--json') + return 0 + ;; + '-n'|'--noheadings') + return 0 + ;; + '-o'|'--output') + return 0 + ;; + '-r'|'--raw') + return 0 + ;; + '-t'|'--time') + clocks="$(command "$1" --noheadings --raw --output NAME)" + COMPREPLY=( $(compgen -W "$clocks" -- "$cur") ) + return 0 + ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + case $cur in + -*) + OPTS="--json + --noheadings + --output + --raw + --time + --help + --version" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + *) + return 0 + ;; + esac + return 0 +} +complete -F _lsclocks_module lsclocks |
