#!/bin/sh
LOCKER=$1
shift
if [ -z "$1" ]; then
 PROGRAM=$1
 shift
else
 PROGRAM=$LOCKER
fi

exec "/mit/$LOCKER/bin/$PROGRAM" "$@"
