sys_process->write
Writes to child stdin.
Target
Signature
1sys_process->write(data)Writes to child stdin.
sys_process->write is called with member syntax on a receiver value. sys_process->write interacts with logs or child processes. Quote external arguments carefully and keep process output handling explicit.
Parameters
data- Required value. Supply
datapositionally unless the signature shows a keyword form.
Examples
Basic call
1#p->write('input')The example keeps process or logging behavior explicit so failures are visible.