.bash_profile 不起作用

.bash_profile 不起作用

我正在尝试在我的 bash_profile 中设置 AVARIABLE:

echo export "AVARIABLE=example" >> ~/.bash_profile

然后

source ~/.bash_profile

此后,AVARIABLE 应该可以工作了,但是...

bash: AVARIABLE: command not found

到底是什么原因造成这情况?

答案1

要引用环境变量,您需要在其前面加上$$AVARIABLE

相关内容