Go backward to Loading and interacting with the file system.
Go up to Loading and interacting with the file system.
Go forward to chdir.
load
----
Loads the file given as its (quoted) argument from the current directory or,
if a full path is specified, from that directory. Load tells Soar to read
commands from the given file instead of the keyboard. Soar will read and
execute each command in the file, and then go back to the keyboard. Loads
may be nested; i.e., the given file may contain a command to load another
file, and so on.
SYNTAX
load "file-name"
EXAMPLE
Soar> load "blocks.soar"
*****************************