| Syntax |
|
| Documentation | $process.waitFor: This function gives you the ability to join the current process to the child process to wait until it exits. If the process was already exited before this function was called it immediately returns. Be careful to give the process a chance to flush it's stderr and stdout buffers doing a getStderr and a getStdout first or you might end up in a blocking situation.
|
| Examples | |
$process.fork{wget --help}
$process.setInputEOF{}
Stdout: $process.getStdout{}Stderr: $process.getStderr{}$process.waitFor{} 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 |