gpt4 book ai didi

linux - 从配置文件中的 shell 脚本读取变量

转载 作者:太空宇宙 更新时间:2023-11-04 12:08:27 28 4
gpt4 key购买 nike

我有一个 shell 脚本,我在其中定义了一些变量,例如

Shell script.sh xyz /abc/def/cde

usecase=${1}
CONFIGDIR=${2}

我有一个配置文件,我想在其中获取这些变量

config file

USECASE=${usecase}
CONFIG=${CONFIGDIR}

你能帮我如何从 shell 脚本中获取变量到配置文件吗?我正在考虑使用“source”命令。我不确定这是否有帮助。谁能指出我正确的方向?

最佳答案

你可以在 shell 脚本中使用给定的命令来完成

usecase=${1}
CONFIGDIR=${2}
key1="USECASE="
key2="CONFIG="
echo $key1$usecase >> /path/to/your/config/file
echo $key2$CONFIGDIR >> /path/to/your/config/file

确保将“/path/to/your/config/file”替换为配置文件的路径

关于linux - 从配置文件中的 shell 脚本读取变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49793604/

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