#!/bin/sh

if [ "$USER" = "" ]; then
    echo "Error.  Please contact scripts@mit.edu for assistance."
elif [ "$1" = "" ]; then
    echo "You must specify a subdirectory of web_scripts to delete."
else
    rm -rf /mit/$USER/web_scripts/$1
fi
