mikshaw
  
 
 
  
 
 
Group: Members 
Posts: 4856 
Joined: July 2004 | 
  | 
Posted: Jan. 13 2005,14:11 | 
   | 
 
 
  
Good.  
  Each path is separated by a colon, and they are searched in the order they are listed in the PATH variable, so if you have a 'ls' command in /cdrom/keep/scriptjes that you want to use as default, then /cdrom/keep/scriptjes should be first in the list so your personal version is found first.
  Also, setting PATH in your personal bash configuration doesn't usually require such a long string.  Most of those paths are already set in /etc/profile, so they can be replaced with "$PATH": export PATH="/cdrom/keep/scriptjes:$PATH" 
  -------------- http://www.tldp.org/LDP/intro-linux/html/index.html
 |