Files
ppit/init.sh
2018-07-13 01:13:23 +02:00

17 lines
457 B
Bash

#!/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'