/ Published in: PHP

URL: http://webschuur.com
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.
Expand |
Embed | Plain Text
# enable bin diretory in PATH when found if [ -a ~/bin ]; then PATH=$PATH:~/bin fi
You need to login to post a comment.