bashrc 和 profile 的區別

在 UNIX 世界,rc 經常被用作程序之啓動腳本的文件名。它是“run commands”(運行命令)的縮寫。

Shell是一個程序,最常用的就是Bash,這也是登錄系統默認會使用的Shell。

bashrc和profile都是Shell的啓動設置文件(其實這兩個文件也是Shell腳本),可以爲當前的Shell初始化環境變量等,它們類似Microsoft DOS/Windows下的autoexec.bat文件。

下面詳細介紹bashrc和profile的用途和區別:

1. 針對個別用戶

用戶HOME(家)目錄/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.

用戶HOME(家)目錄/.profile
# ~/.profile: executed by Bourne-compatible login shells.

2. 針對全體用戶

/etc/bash.bashrc
# System-wide .bashrc file for interactive bash(1) shells.

/etc/profile
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))

從上面的英文描述可以知道,bashrc和profile的差異在於:

1. bashrc是在系統啓動後(bashshell)就會自動運行。

2. profile是在用戶登錄後纔會運行。

3. 進行設置後,可運用source bashrc命令更新bashrc,也可運用source profile命令更新profile。
PS:通常我們修改bashrc,有些linux的發行版本不一定有profile這個文件

4. /etc/profile中設定的變量(全局)的可以作用於任何用戶,而~/.profile等中設定的變量(局部)只能繼承/etc/profile中的變量,他們是”父子”關係。

===============================================================================

另外,需要補充說明介紹bashrc相關的幾個文件:

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

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

~/.bash_profile 是交互式、login方式進入bash運行的,~/.bashrc是交互式non-login方式進入bash運行的,通常二者設置大致相同,所以通常前者會調用後者。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章