sys_process->read
Reads child stdout bytes.
Target
Signature
1sys_process->read(count::integer= ?, -timeout= ?)Reads child stdout bytes.
sys_process->read is called with member syntax on a receiver value. sys_process->read interacts with logs or child processes. Quote external arguments carefully and keep process output handling explicit.
Parameters
count- Optional value of type
integer. Supplycountpositionally unless the signature shows a keyword form. -timeout- Optional value. Supply
-timeoutby keyword, keeping the leading hyphen in the call.
Examples
Basic call
1#p->readThe example keeps process or logging behavior explicit so failures are visible.