#!/bin/bash
if [[ $1 = "ls" ]]; then
  #Simulate: boobank ls -q -f csv -v -s id,balance
  echo "id;balance"
  echo "12345@creditcooperatif;1523.99"
  echo "47896@creditcooperatif;"
else
    exit 1
fi
