Bash ingebouwd commando voor het maken van interactieve asynchrone subshells. Meer informatie: https://www.gnu.org/software/bash/manual/bash.html#Coprocesses.
coproc { {{commando1; commando2; ...}}; }
coproc {{naam}} { {{commando1; commando2; ...}}; }
stdin
van een specifiek coprocess:echo "{{invoer}}" >&"${{{naam}}[1]}"
stdout
van een specifiek coprocess:read {{variabele}} <&"${{{naam}}[0]}"
stdin
leest en opdrachten op de invoer uitvoert:coproc {{naam}} { while read line; do {{commando1; commando2; ...}}; done }
stdin
leest, een pipeline uitvoert op de invoer, en de uitvoer naar stdout
schrijft:coproc {{naam}} { while read line; do echo "$line" | {{commando1 | commando2 | ...}} | cat /dev/fd/0; done }
bc
uitvoert:coproc BC { bc --mathlib; }; echo "1/3" >&"${BC[1]}"; read output <&"${BC[0]}"; echo "$output"