1.bash主要四个配置文件:
/etc/profile
(/etc/profile.d/*.sh)
~/.bash_profile
~/.bashrc
/etc/bashrc
一般每次执行bash的时候,会顺序执行这四个脚本
/etc下是针对所有人
~ 下是针对root账户
profile是完整初始化执行的时候会执行 如su m不会执行 su - m会执行
bashrc每次都会执行
2.bash的其他配置脚本:
~/.bash_logout
~/.bash_history
logout时将内存history记录写入
/etc/profile.d/*.sh 各个子系统的初始化设置脚本
3.补充:
在~/.bashrc下修改
export $LANG=zh_CN.UTF-8
export $LC_ALL=zh_CN.UTF-8
可修改bash下的语言环境
阅读(1803) | 评论(0) | 转发(0) |