Previous Topic: Internal Commands for DSA, DUA, and Scripting

Next Topic: Script File Errors and Debugging

Syntax for Commands

The following command executes a script file:

source "script-file";

The source command is relative to the file that invokes it. For example, you can source the file schema.dxg using the following command:

source "../schema/schema.dxg";

The schema.dxg script can then source a file in its own directory using the following command:

source "attr.dxc";

To include a comment, begin the comment line with the # symbol.