1 首先檢視path
命令:$path
2 如何設定path
命令:echo "export path=******:$path" >> ~/.bash_profile
解釋:把"export path=******:$path"輸出列印到~/.bash_profile中去。
3 unix知識補充:~/.bash_profile介紹
mac和linux終端一般用bash來進行解析。當bash在讀完了整體環境變數的/etc/profile並藉此呼叫其他配置檔案後,接下來則是會讀取使用者自定義的個人配置檔案。bash讀取的檔案總共有三種:
~/.bash_profile ~/.bash_login ~/.profile
其實bash再啟動是唯讀上面檔案的乙個,而讀取的順序則是依照上面的順序。也就是說讀到bash_profile就不讀後面的了,如果bash_profile不存在,後面的才能有機會。
讓我們來看看bash_profile裡面有什麼內容:
命令:cat ~/.bash_profile
圖中展示了其中的內容。
檢視某些資料夾需要root許可權所以用sudo去檢視
Mac環境變數設定
1 vim bash profile open bash profile 然後按shift g就會跳到檔案最後,然後依次輸入a,回車,把下面的語句複製到.bash profile裡面即可,路徑根據自己安裝sdk和ndk的路徑作相應的修改即可 1 2 3 4 exportcocos2dx root u...
MAC 設定環境變數
1.建立並以 textedit 的方式開啟 bash profile 檔案 touch bash profile open t bash profile 2.新增環境變數 export path home rbenv bin path 3.讓以上所做的配置生效 source bash profile...
mac設定環境變數
mac底層是unix,設定環境變數的方法與之類似。1.使用下面命令檢視當前環境變數 echo paht 2。設定環境變數,執行下面命令,開啟對應文字,然後進行設定。注 這裡的.bash profile如果沒有,會自動建立 touch bash profile open bash profile 3。...