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腳本