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 "12345@creditcooperatif;;1523.99" 0006 echo "47896@creditcooperatif;;" 0007 else 0008 exit 1 0009 fi