击:不正确的工作树方向子shell(Bash: tree direction in sub-shel

2019-10-16 20:36发布

我测试了这一个CentOS机器上了一段时间后,它很好地工作。 现在,另一台机器上,我尝试这样做,它无法工作。 什么是不正确的?

command 2> >(tee stderr.log >&2) && exit

我得到这个消息发回。

sh: syntax error near unexpected token `>'

有什么建议么?

Answer 1:

答案是错误消息。 传统的Bourne shell( sh )不支持过程取代(例如>(command) )。 你没有使用bash。 您可以使用更改默认的shell chsh命令。



文章来源: Bash: tree direction in sub-shell working incorrectly
标签: bash stderr tee