mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Add --log-directory option
For specifying directory path in which to save automatically named log files.
This commit is contained in:
parent
83f826349b
commit
70913fe120
7 changed files with 65 additions and 7 deletions
|
|
@ -22,6 +22,7 @@ _tio()
|
|||
-e --local-echo \
|
||||
-l --log \
|
||||
--log-file \
|
||||
--log-directory \
|
||||
--log-append \
|
||||
--log-strip \
|
||||
-m --map \
|
||||
|
|
@ -94,6 +95,10 @@ _tio()
|
|||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
--log-directory)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
--log-append)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue