Prepares an external OS command.
Example:
// prepare the command to executeconst cmd = $os.cmd('ls', '-sl')// execute the command and return its standard output as stringconst output = toString(cmd.output()); Copy
// prepare the command to executeconst cmd = $os.cmd('ls', '-sl')// execute the command and return its standard output as stringconst output = toString(cmd.output());
Rest
Generated using TypeDoc
Prepares an external OS command.
Example: