有点棘手的名字...
基本上我有一个程序,在运行时在STDOUT上打印一组shell变量:
$ ./settings
SETTING_ONE="this is setting one"
SETTING_TWO="This is the second setting"
ANOTHER_SETTING="This is another setting".
我想在shell脚本中运行它,就像正在使用STDOUT进行评估一样source
。
我想做类似...
source `./settings`
...但是那当然行不通。
我知道我可以做:
./settings >/tmp/file
source /tmp/file
但是我真的不想这么做。
有什么线索吗?