Martin Gregorie wrote: > On Mon, 2009-10-26 at 18:03 -0500, flyfisherman wrote: > > > "c:\program files\sierra\fear\fear.exe" &> log.txt > > > Here's the problem -----------------------^ > The '&' shouldn't be there. Everything is fine there, if he is using bash (default in many/all distros). See "man bash". Martin Gregorie wrote: > wine "c:\program files\sierra\fear\fear.exe" 2>&1 >logfile.txt This _is_ wrong. stderr to stdout redirection should go after stdout to file redirection eg: Code: wine "c:\program files\sierra\fear\fear.exe" >logfile.txt 2>&1