On Mon, Oct 11, 2010 at 1:23 PM, Yavuz Selim YILMAZ <yvzslmyilm...@gmail.com> wrote: > I use AIX 5.3. > > How can I handle? [...]
Have not used AIX in ages, but this should work, assuming a sh-type of shell: java -jar start.jar > jetty_log.txt 2>&1 & This will save the output from Jetty to jetty_log.txt. If you do not want to save the output (the file might get quite large depending on your usage), you can use java -jar start.jar > /dev/null 2>&1 & Regards, Gora