1、編輯系統環境變數
vim /etc/profile
2、新增自定義系統變數(變數名建議大寫)
輸入G,可快速定位到檔案末尾,輸入gg, 可快速定位到檔案首行
VAR1=value
export VAR1
3、過載配置檔案(修改的內容才會立即生效)
source /etc/profile
4、讀取驗證
echo $VAR1
1、編輯系統環境變數
vim /etc/profile
2、新增自定義系統變數(變數名建議大寫)
輸入G,可快速定位到檔案末尾,輸入gg, 可快速定位到檔案首行
VAR1=value
export VAR1
3、過載配置檔案(修改的內容才會立即生效)
source /etc/profile
4、讀取驗證
echo $VAR1