hey guys
i am new here .
ok i have a program i run in wine
everything is great
except
when i do a
$ wine program.exe
it works and displays the output as expected
now i want to run it in the background and redirect output to a file
$ wine program.exe > output.txt &
and it stops working
is there a way to fix this ?
thanx
Wine output stops when redirected
Re: Wine output stops when redirected
The command should be:
Code: Select all
wine program.exe &> output.txt