Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,在 bash 中:
python my_py.py # i get some variable my_var
回到 bash。我想要$my_var!
您可以将变量及其值从 python 脚本写入 ini 文件。
在Values.ini文件中
my_var="value"
.执行 python 脚本后,只需使用运算符调用 Values.ini
.
. Values.ini
现在您的 shell 变量$my_var将具有分配的值。这种方法的优点是您可以像这样分配任意数量的变量。
$my_var
var1="value1"
var2="value2"
var3="value3"