请解释一下如何设置环境变量。我需要将环境变量指向 xml 文件。
答案1
在 sh 类型的 shell 中:
YOURVARIABLE='/path/to/file'
export YOURVARIABLE
在 csh 类型的 shell 中:
setenv YOURVARIABLE '/path/to/file'
答案2
要设置系统范围的环境变量,请在 /etc/environment 文件中添加名称-值对(YOUR_VARIABLE=/path/to/file)。来源:http://www.eguys.org/2012/04/system-wide-environment-variables.html