Unit 'amigados' Package
[Overview][Constants][Types][Procedures and functions][Index] [#os4units]

RunCommand

Runs a program using the current process

Declaration

Source position: amigados.pas line 2521

function RunCommand(

  Seg: LongInt;

  Stack: LongWord;

  const ParamPtr: PChar;

  ParamLen: LongInt

):LongInt;

Function result

Return code from executed command. -1 indicates failure

Description

Runs a command on your process/cli. Seg may be any language, including BCPL programs. Stack is in bytes. paramptr is a null- terminated string, paramlen is its length. Returns the returncode the program exited. Returns -1 if the stack couldn't be allocated.

NOTE: the argument string must be terminated with a newline 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.

It's usually appropriate to set the command name before calling RunCommand(). RunCommand() sets the value returned by GetArgStr() while the command is running.

See also

CreateNewProc

  

Create a new process from taglist

SystemTagList

  

Have a shell execute a command line

Execute

  

Execute a CLI command

GetArgStr

  

Returns the arguments for the process

ReadArgs

  

Read bytes of data from a file


Documentation generated on: 2021-07-30