#! /bin/csh -f
# Quiet mkdir
# Usage: mkdir /foo/bar

if (-e $1) then
    exit 0
else
    mkdir $1
    chmod 777 $1
endif
