#!/bin/sh
PS1='$ '
command="$1"
shift

exec "$command" "$@"
