1. 程式人生 > >如何解決shell執行派生子shell問題

如何解決shell執行派生子shell問題

shell subshell 子shell source

筆者今天寫了一個shell script,希望簡化登錄代理服務器的問題,可是script寫好之後,卻發現沒有按照預想的情況下得到環境變量。

為了讓大家好理解,貼出script的內容給各位參閱:

vim proxy_http.sh

加入如下配置:

#!/bin/bash

default_domain=cmdschool
default_username=will

read -p "Please enter you domain(default value is cmdschool): " domain
read -p "Please enter your username(default value is will): " username
read -s -p "Please enter your password: " password

if [ domain=="" ]; then
  domain=$default_domain
fi

if [ username=="" ]; then
  username=$default_username
fi

export http_proxy="http://$domain\\$username:[email protected]:8080"
export https_proxy="http://$domain\\$username:[email protected]:8080"

按照平時的執行方法,我們通常是:

chmod 770 proxy_http.sh
./proxy_http.sh

等同於以下執行效果

sh ./proxy_http.sh

等同於以下執行效果

bash ./proxy_http.sh

然後你檢查環境變量,

echo $http_proxy
echo $https_proxy

結果發現輸出的都是空值,

於是乎一頓百度,結果發現類似的帖子也有,但帖子上也沒有找到答案(帖子的問法是export如何在當前console生效),

http://bbs.chinaunix.net/thread-3777848-1-1.html

然後聯系了一位開源界的前輩(我也不知道對方是否願意我透露他的大名,在此暫時不透露),並得到對方熱情指點,解決方法極其簡單,

source proxy_http.sh

所以,source指令和sh(bash)指令的區別顯而易見,就是一個不會派生子shell和一個會派生子shell,我們平時使用source來導入環境變量,但卻沒有註意到source其實他的本質是用來執行腳本。O(∩_∩)O哈哈~。

如何解決shell執行派生子shell問題