Contents
  1. 1. /etc/profile
  2. 2. /etc/bashrc
  3. 3. ~/.profile
  4. 4. ~/.bashrc
  5. 5. ~/.bash_logout

/etc/profile

登录时执行
并从/etc/profile.d目录的配置文件中搜集shell的设置

/etc/bashrc

打开新的shell时

~/.profile

当用户登录时,该文件仅仅执行一次!
默认情况下,他设置一些环境变量,执行用户的.bashrc文件.

~/.bashrc

登录/打开新的shell时

~/.bash_logout

退出bash shell时

下面是在本机的几个例子:

  1. 图形模式登录时,顺序读取:/etc/profile和~/.profile

  2. 图形模式登录后,打开终端时,顺序读取:/etc/bash.bashrc和~/.bashrc

  3. 文本模式登录时,顺序读取:/etc/bash.bashrc,/etc/profile和~/.bash_profile

  4. 从其它用户su到该用户,则分两种情况:

   (1)如果带-l参数(或-参数,–login参数),如:su -l username,则bash是lonin的,它将顺序读取以下配置文件:/etc/bash.bashrc,/etc/profile和~/.bash_profile。

   (2)如果没有带-l参数,则bash是non-login的,它将顺序读取:/etc/bash.bashrc和~/.bashrc

  1. 注销时,或退出su登录的用户,如果是login方式,那么bash会读取:~/.bash_logout

  2. 执行自定义的shell文件时,若使用“bash -l a.sh”的方式,则bash会读取行:/etc/profile和~/.bash_profile,若使用其它方式,如:bash a.sh, ./a.sh,sh a.sh(这个不属于bash shell),则不会读取上面的任何文件。

  3. 上面的例子凡是读取到/.bash_profile的,若该文件不存在,则读取/.bash_login,若前两者不存在,读取~/.profile。

bashrc用于非交互式non-loginshell,而profile用于交互式login shell。