File indexing completed on 2024-12-22 04:50:58
0001 #!/bin/bash 0002 if [[ $1 = "ls" ]]; then 0003 #Simulate: boobank ls -q -f csv -v -s id,balance 0004 echo "id;label;balance" 0005 echo "CPT-12345678@bank1;;" 0006 echo "CPT-11111111@bank2;;" 0007 else 0008 #Simulate: boobank -q -f csv history "47896@creditcooperatif" -s rdate,type,raw,label,amount --condition "rdate>%4" -n 99999 0009 echo "rdate;date;type;raw;label;amount" 0010 echo "2013-05-04;2013-05-04;0;TOTAL;TOTAL;-50" 0011 fi