Implement function calling from bash : (eg. Heroku cli style) ``` if [[ $1 =~ :: ]]; then debug DIRECT-COMMAND ... command=${1#::} shift $command "$@" else default-command fi ```