~/.bash_profile 使用者登入時被讀取,其中包含的命令被執行
~/.bashrc 啟動新的shell時被讀取,並執行
~/.bash_logout shell 登入退出時被讀取
2. 不同shell的環境變數設定方法
shell
設定
新增
去除
顯示當前值
註解
shname=value1 export name
name=value2:$name
unset name
set(internal)或者env(exported)
如果需要子程序也看到該環境變數,需要使用export
kshname=value1 export name
name=value2:$name
unset name
set(internal)或者env(exported)
如果需要子程序也看到該環境變數,需要使用export
cshsetenv name value1
setenv name value2:$name
unsetenv name
set不需要使用export
bash
name=value1
name=value2:$name
unset name
set或者env
如果需要子程序也看到該環境變數,需要使用export
Linux環境變數設定
1 直接用export命令 export path path 自定義路徑 檢視是否已經設好,可用命令export檢視 root localhost bin export path path 自定義路徑 2 修改profile檔案 vi etc profile 在裡面加入 export path pa...
Linux環境變數設定
linux環境變數設定 linux環境變數設定 1 引言 在 linux系統 command not found 的提示內容。如果每次都到安裝目標資料夾內,找到可執行檔案來進行操作就太繁瑣了。這涉及到環境變數 path 的設定問題,而 path 的設定也是在 linux 下定製環境變數的乙個組成部分...
Linux 環境變數設定
環境變數檢視命令env env 環境變數的設定位於 etc profile檔案 path manipulation if euid 0 then pathmunge sbin pathmunge usr sbin pathmunge usr local sbin pathmunge usr loca...