rc = RunCommand(seglist, stacksize, argptr, argsize)
D0 D1 D2 D3 D4
LONG RunCommand(BPTR, ULONG, STRPTR, ULONG)
Runs a command on your Process/CLI. 'seglist' may be any language, including BCPL programs. 'stacksize' is in bytes. 'argptr' is a null- terminated string, 'argsize' is its length. Returns the returncode the program exited with in register D0. Returns -1 if the stack couldn't be allocated.
- NOTE:
-
the argument string MUST be terminated with a newline (line feed, ASCII code 10) to work properly with ReadArgs() and other argument parsers.
RunCommand also takes care of setting up the current input FileHandle in such a way that
ReadArgs() can be used in the program, and restores the state of the buffering before returning. It also sets the value returned by
GetArgStr(), and restores it before returning.
- NOTE:
-
the setting of the argument string in the FileHandle was added in V37.
It's usually appropriate to set the command name (via
SetProgramName()) before calling RunCommand(). RunCommand() sets the value returned by
GetArgStr() while the command is running.