Problems with 'call'

2013-05-29 Thread Thorsten Jolitz
Hi List, why does this work in the Shell command line: , | $ java -cp $WEKAHOME/weka.jar weka.classifiers.functions.SMO -h | | Help requested. | | General options: | | -h or -help | Output help information. [...]

Re: Problems with 'call'

2013-05-29 Thread Alexander Burger
Hi Thorsten, why does this work in the Shell command line: | $ java -cp $WEKAHOME/weka.jar weka.classifiers.functions.SMO -h ... but this does not work in the PicoLisp commandline: | : (call java -cp $WEKAHOME/weka.jar weka.classifiers.functions.SMO -h) The shell expands the variable

Re: Problems with 'call'

2013-05-29 Thread Thorsten Jolitz
Alexander Burger a...@software-lab.de writes: Hi Alex, why does this work in the Shell command line: | $ java -cp $WEKAHOME/weka.jar weka.classifiers.functions.SMO -h ... but this does not work in the PicoLisp commandline: | : (call java -cp $WEKAHOME/weka.jar

Re: Problems with 'call'

2013-05-29 Thread Jorge Acereda MaciĆ”
On May 29, 2013, at 7:05 PM, Thorsten Jolitz tjol...@gmail.com wrote: - the variable is set and known to BASH, but somehow PicoLisp does not know about it: Did you export it? (export FOO=x instead of just FOO=x) -- UNSUBSCRIBE:

Re: Problems with 'call'

2013-05-29 Thread Thorsten Jolitz
Jorge Acereda MaciĆ” jacer...@gmail.com writes: On May 29, 2013, at 7:05 PM, Thorsten Jolitz tjol...@gmail.com wrote: - the variable is set and known to BASH, but somehow PicoLisp does not know about it: Did you export it? (export FOO=x instead