Utils scripts

This commit is contained in:
2018-07-13 01:10:49 +02:00
parent 405cedb032
commit 59df5a03c7
2 changed files with 18 additions and 0 deletions

16
init.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
rm pits.db
python3.6 pits.py init
python3.6 pits.py p -c 'one'
python3.6 pits.py p -c 'two'
python3.6 pits.py t -c 'test task one'
python3.6 pits.py t -c 'test task two'
python3.6 pits.py n -c 'test note one'
python3.6 pits.py n -c 'test note two'
python3.6 pits.py p -e -s 'new status' -n 'new name'
python3.6 pits.py p -e -n 'second name'
python3.6 pits.py t -e -n 'new task name'
python3.6 pits.py t -e -n 'second name' -p 'high' -s 'wip'