diff options
Diffstat (limited to 'bash-completion/scriptreplay')
| -rw-r--r-- | bash-completion/scriptreplay | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bash-completion/scriptreplay b/bash-completion/scriptreplay index 6c1ed4ca00..5e3f20eea7 100644 --- a/bash-completion/scriptreplay +++ b/bash-completion/scriptreplay @@ -5,10 +5,18 @@ _scriptreplay_module() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in + '-c'|'--cr-mode') + COMPREPLY=( $(compgen -W "auto never always" -- $cur) ) + return 0 + ;; '-d'|'--divisor'|'-m'|'--maxdelay') COMPREPLY=( $(compgen -W "digit" -- $cur) ) return 0 ;; + '-x'|'--stream') + COMPREPLY=( $(compgen -W "out in signal info" -- $cur) ) + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; |
