linux环境变量 bash_profile详解程序员

linux环境变量 bash_profile

[[email protected] ~]# vi /root/.bash_profile


# .bash_profile

# Get the aliases and functions 如果有~/.bashrc这个文件 就运行他
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

# User specific environment and startup programs 所有环境变量路径要用:冒号分开 不是分好 这个跟win不一样

PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib

export PATH

还有运行下更新代码 不然不会更新


source .bash_profile

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/1378.html

(0)
上一篇 2021年7月15日
下一篇 2021年7月15日

相关推荐

发表回复

登录后才能评论