2013

Table Of Contents
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
Using an ASCII text editor (such as TextEdit), save the batch program to a file
named acad.sh. Be sure to change the drive and directory names to match
those on your system.
Place this file in your home directory or a shared location that is on your
system. You can run this shell script program using the Terminal window in
/Applications/Utilities on the drive the operating system is installed. If you
saved the file as acad.sh, use the following syntax:
./acad.sh jobname
where jobname is the name of the job directory to make current.
Locate Customized Files
AutoCAD supports a wide range of files that can be customized. The program
stores files that can be customized by user profile, as well as allow you to add
your own customized file locations. The following locations are defined by
the program:
Local profiles. Local profiles are used to log on a computer and they
store settings and files that are not available when roaming. Some files,
such as materials and drawing templates are stored under your local profile
because of their size, they do not follow you from computer to computer.
Roaming profiles. Roaming profiles allow you to log on to any computer
within a network and retain your user settings. Some files, such as your
personal settings and documents, follow you from computer to computer.
If roaming profiles are allowed on your network, your roamable files are
located in the <user>/Library/Application Support/Autodesk/Roaming/<Product
Version> folder, and your nonroamable files are located in the
<user>/Application Support/Autodesk/Local/<Product Version> folder.
Organize Program and Support Files | 7