#!/bin/bash
#
# Change Dir and run command
#
#
if [ "$#" -lt 2 ]; then
	cat <<EOF
Change current directory to "directory" and run "command"
Usage:

$0 directory command [args]

EOF
fi
cd "$1" &&
shift &&
exec $*
