On Fri, 2009-11-27 at 19:21 -0800, John Jason Jordan wrote:
> In an attempt to fix the problem, I changed the command to:
>
> cd /home/jjj/Software/TreeForm | java -Xmx256m -Xms64m -jar TreeForm.jar
>
^
This should be a semi-colon, not a pipe
cd /home/jjj/Software/TreeForm ; java -Xmx256m -Xms64m -jar TreeForm.jar
Though I prefer to wrap things like this up in a bash script and the
launch that:
#!/bin/bash
cd /home/jjj/Software/TreeForm
java -Xmx256m -Xms64m -jar TreeForm.jar
(you might want to specify the full path to the java executable)
Paul M
> _______________________________________________
> PLUG mailing list
> [email protected]
> http://lists.pdxlinux.org/mailman/listinfo/plug
_______________________________________________
PLUG mailing list
[email protected]
http://lists.pdxlinux.org/mailman/listinfo/plug