3
一次性使用:如何添加出口路徑迅速進入./profile在Ubuntu 15.10
export PATH = $ PATH:/home/raul/swift/usr/ bin
,但在終端重新啓動配置丟失,但在〜/ .profile文件在同一行不working uu
一次性使用:如何添加出口路徑迅速進入./profile在Ubuntu 15.10
export PATH = $ PATH:/home/raul/swift/usr/ bin
,但在終端重新啓動配置丟失,但在〜/ .profile文件在同一行不working uu
下面的代碼可以添加到.profile
的末尾。檢查以確保沒有空格的路徑字符串/home/raul/swift/usr/bin
和PATH="$PATH:/home/raul/swift/usr/bin"
。
## :MY:PROFILE:EDIT: add swift executable path
if [ -d "/home/raul/swift/usr/bin" ] ; then
PATH="$PATH:/home/raul/swift/usr/bin"
fi
.profile
後編輯,做一個爲改變以下生效:
source .profile
注意:.profile
將是有效的duratio n的桌面登錄會話以及相同桌面會話中的後續終端會話。 .bashrc
通常只適用於終端會話的範圍。