linux 启动时导出系统变量
想在linux启动时添加系统变量,可以通过操作/etc/profile.d/文件来实现。
使用系统默认执行脚本的功能,把写好的脚本移动到/etc/profile.d目录下,下次系统启动就可以直接使用了。
需要注意的是在/etc/profile文件中只执行.sh 结尾的文件。
示例:
导入用户自定义的LD_LIBRARY_PATH
cat /etc/profile.d/const.sh
export LD_LIBRARY_PATH=/const/lib/
查看变量
echo $LD_LIBRARY_PATH
/const/lib/
本文链接地址:https://const.net.cn/126.html