标签: linux variables environment updating
我需要一种从脚本中不断更新环境变量的方法。我需要几乎实时地在另一个程序中使用该环境变量。
我的代码是:
# !bin/bash while : do AMA="$(cut -c 1-13 text.txt)" source directory/this_script done
我以这种方式运行时从我的文件中获取正确的信息。我只需要在可能的情况下永久更新此变量。也是一种将它带入环境的方法。
Slackware Linux