Update doitlive
This commit is contained in:
parent
0932faba34
commit
e4ca23901b
2 changed files with 25 additions and 17 deletions
|
|
@ -2,10 +2,17 @@
|
|||
#doitlive prompt: sorin
|
||||
|
||||
python3 todo.py add Test
|
||||
python3 todo.py list Test
|
||||
python3 todo.py list Test Test
|
||||
python3 todo.py list -r Test
|
||||
python3 todo.py list -r Test Test
|
||||
|
||||
python3 todo.py add Test test1 test2
|
||||
python3 todo.py add Test test1 test3
|
||||
python3 todo.py complete Test test1 test3
|
||||
python3 todo.py remove Test test1 test3
|
||||
python3 todo.py add -r Test test1 test2
|
||||
python3 todo.py add -r Test test1 test3
|
||||
python3 todo.py complete -r Test test1 test3
|
||||
python3 todo.py remove -r Test test1 test3
|
||||
|
||||
python3 todo.py add Test
|
||||
python3 todo.py list -r Test
|
||||
python3 todo.py complete -r Test test1
|
||||
python3 todo.py add -r Test test1
|
||||
python3 todo.py remove -r Test test1
|
||||
python3 todo.py remove -r Test test1
|
||||
|
|
|
|||
23
doitlive.sh
23
doitlive.sh
|
|
@ -2,28 +2,29 @@
|
|||
#doitlive prompt: sorin
|
||||
|
||||
python3 todo.py --help
|
||||
python3 todo.py help
|
||||
python3 todo.py -h
|
||||
python3 todo.py h; echo $?
|
||||
python3 todo.py -h; echo $?
|
||||
python3 todo.py asdf; echo $?
|
||||
|
||||
python3 todo.py list
|
||||
python3 todo.py list --help
|
||||
|
||||
python3 todo.py add --help
|
||||
python3 todo.py add Test
|
||||
python3 todo.py list
|
||||
python3 todo.py list Test
|
||||
python3 todo.py add Test test
|
||||
python3 todo.py list Test
|
||||
python3 todo.py list --root Test
|
||||
python3 todo.py add -r Test test
|
||||
python3 todo.py list -r Test
|
||||
python3 todo.py list
|
||||
|
||||
python3 todo.py complete Test test
|
||||
python3 todo.py list Test
|
||||
python3 todo.py complete --help
|
||||
python3 todo.py complete -r Test test
|
||||
python3 todo.py list -r Test
|
||||
python3 todo.py list
|
||||
python3 todo.py complete Test
|
||||
python3 todo.py list
|
||||
|
||||
python3 todo.py remove Test test
|
||||
python3 todo.py list Test
|
||||
python3 todo.py remove --help
|
||||
python3 todo.py remove -r Test test
|
||||
python3 todo.py list -r Test
|
||||
python3 todo.py list
|
||||
python3 todo.py remove Test
|
||||
python3 todo.py list
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue