環境變量配置文件
/etc 下的配置文件,對所有用戶都起作用
~/bash_profile 只對當前用戶起作用
/etc 下的配置文件,對所有用戶都起作用
~/bash_profile 只對當前用戶起作用
2015-04-10
修改配置文件后,必須注銷重新登陸才會生效
或者使用source 配置文件
或者 . 配置文件
.和source等效
環境變量配置文件中主要是定義對系統操作環境生效的系統默認環境變量,如PAHT等。
linux一些即文件
環境變量配置文件
/etc/profile
/etc/profile.d/*.sh
~/.bash_profile
~/.bashrc
/etc/bashrc
或者使用source 配置文件
或者 . 配置文件
.和source等效
環境變量配置文件中主要是定義對系統操作環境生效的系統默認環境變量,如PAHT等。
linux一些即文件
環境變量配置文件
/etc/profile
/etc/profile.d/*.sh
~/.bash_profile
~/.bashrc
/etc/bashrc
2015-04-10