gpt4 book ai didi

python - 如何从 (ba)sh 脚本导入变量?

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

我想做这样的事情:

from ./script.sh import VARIABLE # <-- python style

(不改变script.sh)

最佳答案

不完全一样,但这行得通:

source ./script.sh
echo "VARIABLE=${VARIABLE}."

缩写形式:

. ./script.sh
echo "VARIABLE=${VARIABLE}."

这可能不是我们想要的,因为这将执行任何不在 script.sh 中的函数中的代码。

关于python - 如何从 (ba)sh 脚本导入变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20023166/

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