源运算符在 bash 中的括号内不起作用

发布于 2024-08-31 09:56:46 字数 449 浏览 7 评论 0原文

我想在 bash 脚本中包含一个配置文件,有两个条件:

  1. 配置文件名是即时构造的并存储在变量中,
  2. 如果配置文件不存在,脚本应该失败:

config .cfg:

 CONFIGURED=yes

test.sh:

#!/bin/sh
$CFG=config.cfg

echo Source command doesn't work here:
[ -f $CFG ] && ( source $CFG ) || (echo $CFG doesnt exist; exit 127)
echo $CONFIGURED

echo ... but works here:
source $CFG
echo $CONFIGURED

[...] 语句有什么问题?

I'd like to include a config file in my bash script with 2 conditions:

  1. the config file name is constructed on-the-fly and stored in variable, and
  2. in case if config file doesn't exist, the script should fail:

config.cfg:

 CONFIGURED=yes

test.sh:

#!/bin/sh
$CFG=config.cfg

echo Source command doesn't work here:
[ -f $CFG ] && ( source $CFG ) || (echo $CFG doesnt exist; exit 127)
echo $CONFIGURED

echo ... but works here:
source $CFG
echo $CONFIGURED

What's wrong in [...] statement?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-09-07 09:56:46

( ... ) 在单独的子 shell 中运行命令。如果您想在同一个 shell 中运行命令(如果可能),请使用 { ... ; } 相反。

( ... ) runs the commands in a separate subshell. If you want to run the commands in the same shell if possible then use { ... ; } instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文