diff options
| author | Christian Goeschel Ndjomouo <cgoesc2@wgu.edu> | 2025-10-31 13:18:32 -0400 |
|---|---|---|
| committer | Christian Goeschel Ndjomouo <cgoesc2@wgu.edu> | 2025-10-31 13:18:32 -0400 |
| commit | be76d195af3ea6df20e58a864e20cc457c485278 (patch) | |
| tree | 208ae6695718de5d920fede355e41531b19989f6 | |
| parent | fb2ca61fa6eb029d771dcae80ee9bb765d176f82 (diff) | |
| download | util-linux-be76d195af3ea6df20e58a864e20cc457c485278.tar.gz | |
bash-completion: (scriptlive) add missing --echo
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
| -rw-r--r-- | bash-completion/scriptlive | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bash-completion/scriptlive b/bash-completion/scriptlive index 56a296f5b5..69f0a3633d 100644 --- a/bash-completion/scriptlive +++ b/bash-completion/scriptlive @@ -14,13 +14,19 @@ _scriptlive_module() COMPREPLY=( $(compgen -W "digit" -- $cur) ) return 0 ;; + '-E'|'--echo') + COMPREPLY=( $(compgen -W "auto always never" -- $cur) ) + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; esac case $cur in -*) - OPTS="--timing + OPTS=" + --echo + --timing --log-in --log-io --log-timing |
