ajal-todo-cli/doitlive.sh
2024-11-12 00:41:34 -05:00

30 lines
682 B
Bash

#doitlive speed: 3
#doitlive prompt: sorin
python3 todo.py --help
python3 todo.py -h; echo $?
python3 todo.py asdf; echo $?
python3 todo.py list --help
python3 todo.py add --help
python3 todo.py add Test
python3 todo.py list
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 --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 --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