/etc/profile是全局的,是私有的linux
/etc/profile用於整個系統全部用戶, ~/.bash_profile, ~/.profile和~/.bashrc 用於各個用戶,這裏的"~"符號就是各當前用戶的$HOME ~/.bash_profile 和 ~/.profile 只在登錄時讀取一次。 ~/.bashrc 每次都讀取 ~/.bash_profile 和 ~/.profile 的區別在於,bash 只讀取~/.bash_profile;而對於 ~/.profile 來講,不光bash, 其餘shell 也讀 ~/.profile
(1)/etc/profile(全局變量): 爲系統的每一個用戶設置環境信息,當用戶第一次登陸時,該文件被執行. 並從/etc/profile.d目錄的配置文件中搜集shell的設置。shell
(2)/etc/bashrc: 爲每個運行bash shell的用戶執行此文件.當bash shell被打開時,該文件被讀取。bash
(3)~/.bash_profile: 每一個用戶均可使用該文件輸入專用於本身使用的shell信息,當用戶登陸時,該文件僅僅執行一次!默認狀況下,他設置一些環境變量,執行用戶的.bashrc文件。.net
(4)~/.bashrc: 該文件包含專用於你的bash shell的bash信息,當登陸時以及每次打開新的shell時,該該文件被讀取。code
(5)~/.bash_logout:當每次退出系統(退出bash shell)時,執行該文件. 另外,/etc/profile中設定的變量(全局)的能夠做用於任何用戶,而~/.bashrc等中設定的變量(局部)只能繼承/etc /profile中的變量,他們是」父子」關係。blog
(6)~/.bash_profile 是交互式、login 方式進入 bash 運行的~/.bashrc 是交互式 non-login 方式進入 bash 運行的一般兩者設置大體相同,因此一般前者會調用後者。繼承
在登陸Linux時要執行文件的過程以下:作用域
在剛登陸Linux時,首先啓動 /etc/profile 文件,而後再啓動用戶目錄下的 ~/.bash_profile、 ~/.bash_login或 ~/.profile文件中的其中一個,執行的順序爲:~/.bash_profile、 ~/.bash_login、 ~/.profile。若是 ~/.bash_profile文件存在的話,通常還會執行 ~/.bashrc文件。由於在 ~/.bash_profile文件中通常會有下面的代碼:get
if [ -f ~/.bashrc ] ; thenclass
. ./bashrc
fi
~/.bashrc中,通常還會有如下代碼:
if [ -f /etc/bashrc ] ; then
. /bashrc
fi
因此,~/.bashrc會調用 /etc/bashrc文件。最後,在退出shell時,還會執行 ~/.bash_logout文件。
執行順序爲:/etc/profile -> (~/.bash_profile | ~/.bash_login | ~/.profile) -> ~/.bashrc -> /etc/bashrc -> ~/.bash_logout
參考:
http://dblab.xmu.edu.cn/blog/linux-environment-variable/
https://blog.csdn.net/caiwenfeng_for_23/article/details/44242961