将文件夹添加到 PATH

将文件夹添加到 PATH

如何向 PATH 添加内容?我已添加

PATH=$PATH:/home/example
export PATH

并且它一直有效直到我重新启动,之后当我在 PATH 中输入 env 时,没有 /home/example。

答案1

将这些行添加到您的~/.bash_profile~/.bashrc

指导使用

答案2

~/.bash_profile在您的或中设置它~/.profile(取决于您的 bash 配置)。

它只是一组在每次启动新的 bash 实例时运行的命令。这一直是我做这件事的笨办法。它很有效,所以我从未寻求过更好的方法。

mizar:branches peelman$ cat ~/.bash_profile 
complete -W "$(echo `cat ~/.ssh/known_hosts | cut -f 1 -d ' ' | sed -e s/,.*//g | uniq | grep -v "\["`;)" ssh

PATH=$PATH:/opt/local/bin/:/usr/local/git/bin/:~/bin/
SVN_EDITOR=/usr/bin/nano
EDITOR=/usr/bin/nano

alias restartgrowl="killall GrowlHelperApp && open -a GrowlHelperApp"
...
mizar:branches peelman$ 

答案3

将其放入.*rc您的主目录中,以便它在您运行您最喜欢的 shell 时运行。

例子:

~/.bashrc ~/.bash_profile

对于 bash

~/.tcshrc

对于 tcsh

等等等等...

~/.profile通常每次都会加载....

相关内容