ARES Kudo supports running LISP scripts via the command line and allows loading LISP files.
To load a LISP script from the command line, use a command like this:
(load "D:\\trunk\\myLISP.lsp") ; for Windows Server
(load "/home/AK Server/myLISP.lsp") ; for Linux Server
Ensure that the file path corresponds to the correct operating system, as shown in the examples above.
To automatically load LISP files when ARES Kudo starts, refer to the Customization Guide. You can configure automatic loading by adding your LISP file path (e.g., (load "D:\\trunk\\myLISP.lsp")
for Windows or (load "/home/AK Server/myLISP.lsp")
for Linux) to the start.lsp
file.