Kaffe 1.0beta1 on RedHat Linux 5.1

Alexandre Oliva oliva at dcc.unicamp.br
Wed Sep 16 18:52:29 PDT 1998


satya seshu kumar dammu <seshukumar49 at netscape.net> writes:

>      r.exec("/bin/ls > /home/seshu/zzz ");

This is not supposed to work.  Redirection is performed by a shell,
but r.exec won't run a shell.  If you want shell processing, run:

       r.exec(new String[] { "/bin/sh", "-c", "/bin/ls > /home/seshu/zzz" });

> %Kaffe sun.tools.ttydebug.TTY Test

I don't think Kaffe provides debugger support yet.

-- 
Alexandre Oliva
mailto:oliva at dcc.unicamp.br mailto:aoliva at acm.org
http://www.dcc.unicamp.br/~oliva
Universidade Estadual de Campinas, SP, Brasil



More information about the kaffe mailing list