When you add another directory to the search path, it is best to
add it to the head of the path, so that programs will be found
there first, in preference to programs of the same name in another
directory in the search path. The way you add a new directory to
the search path depends on the type of shell (command interpreter)
that you use. Suppose you want to add the directory
/usr/java/bin to the search path:
set path=(/usr/java/bin $path)
PATH=/usr/java/bin:$PATH
export PATH