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