2017-05-05 64 views

回答

0

來源:在當前shell環境下,它將讀取文件並在文件中執行cmd。

通常它用於添加一些環境變量。例如

> echo $MY_ENV 
// nothing 

> cat foo.txt 
export MY_ENV=bar 
> source foo.txt 
// after source, MY_ENV is set in current env 

> echo $MY_ENV 
bar 
相關問題