Am Freitag, den 30.11.2007, 13:45 +0200 schrieb Graeme Geldenhuys:
> On 30/11/2007, Marco van de Voort <[EMAIL PROTECTED]> wrote:
> >
> >   ./something >&  out.log
> >
> 
> That didn't work...

Maybe you use another shell than Marco (that's [t]csh), you could look
at the man page for your in the part "output redirection" or similar.

For sh and maybe bash getting stdout and stderr in the file

./something 2>&1 out.log

should do. I didnt test, but getting stderr only may work like this:

./something 2> out.log


HTH,
Marc


_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to