On Thu, 31 Mar 2005, Raymond Norton wrote: > I managed to get the line to execute by entering the full path > > ( /usr/java/jre1.5.0_02/bin/java -Xmx256m -jar FileIndexer-1.1.4.jar ) By the way, I usually use a symbolic link to deal with weird paths like that one: ln -s /usr/java/jre1.5.0_02/bin/java /usr/local/bin/java Assuming /usr/local/bin is in your path, that will put java in your path and "ls -l /usr/local/bin/java" will show you the link. I know some of this is very basic but not everyone is an expert here! Mike