#!/usr/bin/env bash PHARO_VM=${PHARO_VM:-./macos/pharo} PLATYPUS_IMAGE=${PLATYPUS_IMAGE:-./shared/Pharo.image} command=$1 shift # disable parameter expansion to forward all arguments unprocessed to the VM set -f exec "$PHARO_VM" "$PLATYPUS_IMAGE" platypus "$command" "$@"