1. 程式人生 > >bash學習之一:登陸、非登陸shell,互動、非互動shell,以及它們的startup檔案

bash學習之一:登陸、非登陸shell,互動、非互動shell,以及它們的startup檔案

家目錄下的配置檔案.bashrc中rc的含義是resource configuration

什麼是登陸shell?什麼是非登陸shell?

登陸shell是指:(1)使用者登陸時,輸入使用者名稱和密碼後啟動的shell;(2)通過帶--login引數的命令:bash --login而啟動的shell。對於使用者來說,登陸shell和非登陸shell的主要區別是:啟動shell時所執行的startup檔案不同。我在/etc/profile、~/.bash_profile、~/.bashrc三個檔案中分別通過echo命令打印出檔名。執行命令如下所示:

[email protected]:~$ bash
.bashrc

[email protected]:~$ bash --login
etc/profile
.bash_profile
.bashrc
[email protected]:~$

上面的結果說明:登陸shell執行startup檔案為:/etc/profile、~/.bash_profile、~/.bashrc(這裡只是從現象上得出的推論,這種推論是有問題的,稍後討論),而非登陸shell執行的startup檔案僅為:~/.bashrc。

bash作為登陸shell是由/etc/login程式解析/etc/passwd檔案而指定的,例如:wangjk:x:1000:1000:wangjiankun,,,:/home/wangjk:/bin/bash

,其中紅色域指定了使用者的登入shell是bash。

事實上,bash作為登陸shell啟動時執行的startup檔案如下:

  • /etc/profile
  • ~/.bash_profile,~/.bash_login or ~/.profile, first existing readable file is read

而bash作為非登陸shell啟動時讀取~/.bashrc。注意,作為登陸shell時bash並不讀取~/.bashrc,但是在檔案~/.bash_profile中通常都有如下語句來讀取~/.bashrc:

if [ –f  ~/.bashrc ]; then . ~/.bashrc; fi

以上討論的是互動式bash shell,其實shell有兩種工作模式,就是:互動式和非互動式,執行指令碼時,shell就工作在非互動式模式下。在非互動模式下,bash讀取的startup檔案由環境變數BASH_ENV來決定,例如,我在~/.test檔案中用echo命令列印語句:I test non-interactive shell,在test.sh指令碼中列印語句:this file is test.sh,執行輸出結果如下:

[email protected]:~$
[email protected]:~$ echo $BASH_ENV

[email protected]:~$ ./test.sh                                            
this file is test.sh
[email protected]:~$ export BASH_ENV=~/.test
[email protected]:~$ ./test.sh                                            
I test non-interactive shell
this file is test.sh
[email protected]:~$

注意,中間的那個空行表示環境變數BASH_ENV為空,所以第一次執行指令碼test.sh時只輸出了一句話,在定義了環境變數BASH_ENV為~/.test以後執行指令碼test.sh就列印了兩句話其中第一句是執行檔案~/.test打印出來的。