| Syntax |
|
| Documentation | $process.fork: Starts a program residing in var/share/srv/bin asynchronously as a new process. If you need to launch a program of your system which is not in the mentioned directory you'd either set a link on unix or make a batch on windows. Having this kind of sandbox the administrator has full control of what may be executed by SITEFORUM via $process.
|
| Examples | |
$process.fork{wget --help}
$process.setInputEOF{}
Stdout: $process.getStdout{}Stderr: $process.getStderr{}$process.waitForAll{} Exitvalue: $process.getExitValue{} |
|
| Group | Special |
| Minimum required transaction-mode: | NONE |
| Required scripting permission of the developer | PERMISSION_FL_EXPERT |
| Minimum parameters | 1 |
| Maximum parameters | 1 |