Linux中BASH的配置文件
Linux中BASH的配置文件
制作人:全心全意
全局配置
/etc/profile
/etc/profile.d/*.sh
/etc/bashrc
个人配置
~/.bash_profile
~/.bashrc
profile类的文件:
设定环境变量
运行命令或脚本(登录时)
bashrc类的文件:
设定本地变量
定义命令别名
登录式shell读取配置文件:/etc/profile -->/etc/profile.d/*.sh --> ~/.bash_profile --> ~/.bashrc --> /etc/bashrc
非登录式shell读取配置文件:~/.bashrc --> /etc/bashrc --> /etc/profile.d/*.sh
su USERNAME
图形终端下打开的命令窗口
自动执行的shell脚本