/etc/profile、/etc/bashrc、~/.bashrc、~/.bash_profile执行顺序探讨

/etc/profile、/etc/bashrc、~/.bashrc、.bash_profile这四个文件在用户登录时候的执行顺序,这个网上各种资料说法不一,我们自己来探究一下它执行的先后顺序。思路是这样的,在这四个文件的最后一行加一行日志,然后进行重启,然后查看打印日志的先后顺序。具体操作如下:

1、增加打印日志

vim /etc/profile

 # 在/etc/profile最后一行加入下面一行
 echo '/etc/profile is readed!' >> ~/my.log

vim /etc/bashrc

 # 在/etc/bashrc最后一行加入下面一行
 echo '/etc/bashrc is readed!' >> ~/my.log

vim ~/.bashrc

 # 在~/.bashrc最后一行加入下面一行
 echo '~/.bashrc is readed!' >> ~/my.log

vim ~/.bash_profile

 # 在~/.bash_profile最后一行加入下面一行
 echo '~/.bash_profile is readed!' >> ~/my.log

2、重启,然后“cat~/my.log”,内容如下:

/etc/profile、/etc/bashrc、~/.bashrc、~/.bash_profile执行顺序探讨_第1张图片

3、结论

执行的顺序是:/etc/profile、/etc/bashrc、~/.bashrc、~/.bash_profile,至少在我用的CentOS7中是这样的一个顺序。

 

你可能感兴趣的:(linux,centos)