31 lines
598 B
Bash
31 lines
598 B
Bash
#doitlive speed: 3
|
|
#doitlive prompt: sorin
|
|
|
|
python3 todo.py --help
|
|
python3 todo.py help
|
|
python3 todo.py -h
|
|
python3 todo.py h
|
|
echo $?
|
|
python3 todo.py asdf
|
|
echo $?
|
|
|
|
python3 todo.py list
|
|
|
|
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
|
|
|
|
python3 todo.py complete Test test
|
|
python3 todo.py list 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 list
|
|
python3 todo.py remove Test
|
|
python3 todo.py list
|