File indexing completed on 2025-01-05 04:44:08
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 "LEO-987654321@ldlc;;" 0006 else 0007 #Simulate: boobank -q -f csv history "47896@creditcooperatif" -s date,rdate,type,raw,label,amount --condition "rdate>%4" -n 99999 0008 echo "date;rdate;type;raw;label;amount" 0009 echo "2018-09-25;Not available;1;;;307.00" 0010 echo "2018-09-18;Not available;1;;;150.00" 0011 echo "2018-09-04;Not available;4;;;141.80" 0012 0013 0014 fi