在Linux中添加環境變量PATH,方法之一是在/etc/profile中添加。
我先是這樣寫了:export PATH=/home/bin:$PATH
而後,使之生效:source /etc/profile
這時,查看:echo $PATH
發現,顯示出來的只有:/home/bin,而如/usr/bin,/bin都沒了。ide
解決方法是:在/etc/profile中應寫成:export PATH=$PATH:/home/bin
而若是是臨時的添加PATH路徑,應在終端中輸入:export PATH=/home/bin:$PATH
it