[轉]shell中 source命令即點空格後面再跟可執行檔的說明

來源:互聯網
上載者:User

標籤:

這裡記錄的是在一個shell指令碼裡面使用
. ./file.sh 和
./file.sh 的區別,本文參考了http://www.lslnet.com/linux/dosc1/39/linux-283534.htm (這個藍森林的東西應該是來源於chinaunix)


來個小實驗
情境一:
vi file1.sh
./file2.sh
echo $NIVEK

vi file2.sh
NIVEK=goupi
export NIVEK

chmod 755 file1.sh file2.sh

$./file1.sh
                  //沒有任何輸出
$

情境二:
vi 1file.sh
. ./2file.sh
echo $NIVEK

vi 2file.sh
NIVEK=goupi
export NIVEK

chmod 755 1file.sh 2file.sh

$./1file.sh
goupi              //在2file.sh裡面export 的變數NIVEK的值
$

由此可以看到它們的區別,即
./file.sh  將重啟一個新的子shell來執行它,所以如果在file.sh中定義的一些變數(export)只在子shell有作用,返回後將失去作用.

. ./file.sh 不啟動新的shell,在當前shell中執行,所以在file.sh中定義的變數返回後依然有作用.


再看一下這個簡單的例子:
cat 1.sh 
#!/bin/bash
sleep 1
exit 1

cat test1.sh 
#!/bin/bash
./1.sh
echo "can you see me"

cat test2.sh 
#!/bin/bash
. ./1.sh
echo "can you see me"

分別執行test1.sh, test2.sh從它們的區別裡面可以看到一些不同

 

reference:

http://blog.chinaunix.net/uid-20652643-id-1906458.html

 

[轉]shell中 source命令即點空格後面再跟可執行檔的說明

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.