Add -t/--timestamp to bash completion script.

This commit is contained in:
Henrik Brix Andersen 2020-08-13 10:46:21 +02:00
parent 39a8f63640
commit 6df80fa503

View file

@ -20,6 +20,7 @@ _tio()
-l --log \
-m --map \
-v --version \
-t --timestamp \
-h --help"
# Complete the arguments to the options.
@ -65,6 +66,10 @@ _tio()
COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL" -- ${cur}) )
return 0
;;
-t | --timestamp)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
-v | --version)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0