Bash 中的圆形管道

Bash 中的圆形管道

我需要在 Bash 中使用圆形管道。

这不起作用:

exec 3>&1 | socat | awk | socat >&3  #exec 3>&1

这有效:

exec 3> /dev/stderr ; echo test >&3

有人可以为第一个不起作用的例子提供正确的语法吗?

相关内容