2012

Table Of Contents
works only if you set the AutoCAD for Mac system variable
REMEMBERFOLDERS to 0.
You can use a batch program to create new job directories automatically. The
following batch program verifies that a specified directory exists, sets that
directory to be current, and then runs AutoCAD for Mac.
#!/bin/sh
prj="$1"
#Switch to the project folder and start AutoCAD
function startACAD() {
cd /AcadJobs/Jobs/$prj
echo "Starting AutoCAD"
"/Applications/Autodesk/AutoCAD
2012/AutoCAD.app/Contents/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
6 | Chapter 1 Basic Customization