Linux中profile、bashrc、bash_profile之間的區別和聯繫

/etc/profile:此文件爲系統的每一個用戶設置環境信息,當用戶第一次登陸時,該文件被執行.並從/etc/profile.d目錄的配置文件中搜集shell的設置.shell

英文描述爲:bash

# /etc/profileless

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrcide

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.this

因此若是你有對/etc/profile有修改的話必須得重啓你的修改纔會生效,此修改對每一個用戶都生效。
idea

/etc/bashrc:爲每個運行bash shell的用戶執行此文件.當bash shell被打開時,該文件被讀取.spa

英文描述爲:繼承

# /etc/bashrcip

# System wide functions and aliases
# Environment stuff goes in /etc/profileio

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

若是你想對全部的使用bash的用戶修改某個配置並在之後打開的bash都生效的話能夠修改這個文件,修改這個文件不用重啓,從新打開一個bash便可生效。

~/.bash_profile:每一個用戶均可使用該文件輸入專用於本身使用的shell信息,當用戶登陸時,該文件僅僅執行一次!默認狀況下,他設置一些環境變量,執行用戶的.bashrc文件.

此文件相似於/etc/profile,也是須要須要重啓纔會生效,/etc/profile對全部用戶生效,~/.bash_profile只對當前用戶生效。

~/.bashrc:該文件包含專用於你的bash shell的bash信息,當登陸時以及每次打開新的shell時,該文件被讀取.(每一個用戶都有一個.bashrc文件,在用戶目錄下)

此文件相似於/etc/bashrc,不須要重啓生效,從新打開一個bash便可生效,  /etc/bashrc對全部用戶新打開的bash都生效,但~/.bashrc只對當前用戶新打開的bash生效。

~/.bash_logout:當每次退出系統(退出bash shell)時,執行該文件. 

另外,/etc/profile中設定的變量(全局)的能夠做用於任何用戶,而~/.bashrc等中設定的變量(局部)只能繼承/etc/profile中的變量,他們是"父子"關係.
 
~/.bash_profile 是交互式、login 方式進入bash 運行的;
~/.bashrc 是交互式 non-login 方式進入bash 運行的;一般兩者設置大體相同,因此一般前者會調用後者。

相關文章
相關標籤/搜索