我有一些脚本使用
coproc来控制子进程的stdout / stdin.
不幸的是,coproc是在Bash 4.0中引入的,在我使用的许多系统上,都有早期版本的bash.
不幸的是,coproc是在Bash 4.0中引入的,在我使用的许多系统上,都有早期版本的bash.
coproc有什么替代品吗?
您可以使用标准命名管道而不是coproc:
原文链接:https://www.f2er.com/bash/385702.htmlmkfifo in_data out_data command <in_data >out_data & exec 3> in_data 4< out_data echo <some thing here> >&3 read <some variables here> <&4