2011

Table Of Contents
#!/bin/sh
prj="$1"
#Switch to the project folder and start AutoCAD
function startACAD() {
cd /AcadJobs/Jobs/$prj
echo "Starting AutoCAD"
/Applications/Autodesk/AutoCAD 2011 for Mac/AutoCAD.app/Con
tents/MacOS/AutoCAD
}
#Clear Terminal and check for the existence of the folder
clear
cd .
if [ -d /AcadJobs/Jobs/$prj ]
then
startACAD
fi
#Prompt to create folder
echo .
echo Creating /AcadJobs/Jobs/$prj
echo 'Press Y to continue (or A to abort)'
echo .
cont="True"
answer=""while [ "$cont" = "True" ]
do
read -n1 -t10 answer
echo
if [ "$answer" = "y" ] || [ "$answer" = "Y" ] || [ "$answer" =
"a" ] || [ "$answer" = "A" ]
then
cont="False"
fi
done
#Check to see if the user requested to abort or continue
if [ "$answer" = "a" ] || [ "$answer" = "A" ]
then
exit 1
else
mkdir -p /AcadJobs/Jobs/$prj
fi
#Switch to the project folder and start AutoCAD
startACAD
Multiple Drawing Folders | 9