forked from jimktrains/freebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_test
19 lines (18 loc) · 780 Bytes
/
init_test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
rm -rf test-ledger
python freebooks.py -l test-ledger init jim "Jim K" [email protected]
python freebooks.py -l test-ledger -u jim add-user you "You There" [email protected]
echo "Move 100 from 1 to 2"
python freebooks.py -u jim -l test-ledger tx 1 2 jim 100
python freebooks.py -u jim -l test-ledger bal
echo "Move 400 from 2 to 1"
python freebooks.py -u you -l test-ledger tx 2 1 jim 400
python freebooks.py -u jim -l test-ledger bal
echo "Move 200 from 3 to 1"
python freebooks.py -u jim -l test-ledger tx 3 1 jim 200
python freebooks.py -u jim -l test-ledger bal
echo "Listing Account 1"
python freebooks.py -u jim -l test-ledger ls 1
echo "Listing Account 2"
python freebooks.py -u jim -l test-ledger ls 2
echo "Listing Account 3"
python freebooks.py -u jim -l test-ledger ls 3