gpt4 book ai didi

bash - bash 脚本中临时无名管道的问题

转载 作者:行者123 更新时间:2023-11-29 09:41:48 24 4
gpt4 key购买 nike

我有以下问题:

当我直接在终端窗口中执行以下脚本时,命令的行为符合预期。

$ diff <(echo tmp) <(echo tmp1)
1c1
< tmp
---
> tmp1

但是当我在 shell 脚本中编写相同的命令时

#! /bin/bash
diff <(echo tmp) <(echo tmp1)

我收到以下错误消息:

$ sh test.sh
test.sh: line 2: syntax error near unexpected token `('
test.sh: line 2: ` diff <(echo tmp) <(echo tmp1)'

最初我认为这是 diff 的问题,但其他命令也会发生这种情况。有人知道导致问题的原因吗?

最佳答案

尝试

bash test.sh

chmod ugo+x test.sh
./test.sh

当我这样做时,对我来说效果很好。

看起来 bourne shell (sh) 不支持该语法。

关于bash - bash 脚本中临时无名管道的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2244610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com