/ Published in: PHP
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.
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
Copy this code and paste it in your HTML
# enable bin diretory in PATH when found if [ -a ~/bin ]; then PATH=$PATH:~/bin fi
URL: http://webschuur.com