mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Added log feature
Added "--log <filename>" option which writes all activity to specified file.
This commit is contained in:
parent
d574172205
commit
bbda0b8851
9 changed files with 140 additions and 4 deletions
|
|
@ -17,6 +17,7 @@ _gotty()
|
|||
-p --parity \
|
||||
-o --output-delay \
|
||||
-n --no-autoconnect \
|
||||
-l --log \
|
||||
-v --version \
|
||||
-h --help"
|
||||
|
||||
|
|
@ -79,6 +80,10 @@ _gotty()
|
|||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
-l | --log)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
-v | --version)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue