sys_process->readError

Reads child stderr bytes.

Target member

Signature

1sys_process->readError(count::integer= ?, -timeout= ?)

Reads child stderr bytes.

sys_process->readError is called with member syntax on a receiver value. sys_process->readError interacts with logs or child processes. Quote external arguments carefully and keep process output handling explicit.

Parameters

count
Optional value of type integer. Supply count positionally unless the signature shows a keyword form.
-timeout
Optional value. Supply -timeout by keyword, keeping the leading hyphen in the call.

Examples

Basic call

1#p->readError
The example keeps process or logging behavior explicit so failures are visible.