summaryrefslogtreecommitdiffstats
path: root/bash-completion/scriptreplay
diff options
context:
space:
mode:
authorSami Kerola2017-04-12 11:48:31 +0200
committerSami Kerola2017-04-17 19:34:14 +0200
commite4fc3d574c836d5a8b2ddbb4660b96609f028252 (patch)
treeb446c835f2c22aaa9a6e88cd5bb1680bec0c4fbc /bash-completion/scriptreplay
parentbash-completion: update sys-utils (diff)
downloadkernel-qcow2-util-linux-e4fc3d574c836d5a8b2ddbb4660b96609f028252.tar.gz
kernel-qcow2-util-linux-e4fc3d574c836d5a8b2ddbb4660b96609f028252.tar.xz
kernel-qcow2-util-linux-e4fc3d574c836d5a8b2ddbb4660b96609f028252.zip
bash-completion: update term-utils
scriptreplay: Add --maxdelay option. Commit: 7f1d48363823f7da47ca56f84eb4b2155c5ed36b setterm: Add --resize coption. Commit: 5d795999511adc455d223be8281948796bd7d087 write: List only users who are online and determine tty based on given user name. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'bash-completion/scriptreplay')
-rw-r--r--bash-completion/scriptreplay3
1 files changed, 2 insertions, 1 deletions
diff --git a/bash-completion/scriptreplay b/bash-completion/scriptreplay
index a4aa8a08d..9e1a79023 100644
--- a/bash-completion/scriptreplay
+++ b/bash-completion/scriptreplay
@@ -5,7 +5,7 @@ _scriptreplay_module()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
case $prev in
- '-d'|'--divisor')
+ '-d'|'--divisor'|'-m'|'--maxdelay')
COMPREPLY=( $(compgen -W "digit" -- $cur) )
return 0
;;
@@ -18,6 +18,7 @@ _scriptreplay_module()
OPTS="--timing
--typescript
--divisor
+ --maxdelay
--version
--help"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )