如果用户主页中存在';bin';,则将其添加到路径中。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果用户主页中存在';bin';,则将其添加到路径中。相关的知识,希望对你有一定的参考价值。
Put this line in your .bashrc.If the user has a directory named 'bin' then that will be added to the PATH.
All scripts in that path (wich are executable) will be available as commands to that user.
# enable bin diretory in PATH when found if [ -a ~/bin ]; then PATH=$PATH:~/bin fi
以上是关于如果用户主页中存在';bin';,则将其添加到路径中。的主要内容,如果未能解决你的问题,请参考以下文章