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 "131350008012345678900@caisse-epargne;;-147994.82" 0006 else 0007 if [[ $5 = "131350008012345678900@caisse-epargne" ]]; then 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.48" 0011 echo "2013-05-20;2013-05-20;1;SNCF;SNCF;-17" 0012 echo "2013-05-26;2013-05-26;1;CAF;CAF;120.25" 0013 fi 0014 fi