Wine output stops when redirected

Questions about Wine on Linux
Locked
whineuser
Newbie
Newbie
Posts: 1
Joined: Mon Sep 08, 2014 9:18 am

Wine output stops when redirected

Post by whineuser »

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
User avatar
dimesio
Moderator
Moderator
Posts: 13367
Joined: Tue Mar 25, 2008 10:30 pm

Re: Wine output stops when redirected

Post by dimesio »

The command should be:

Code: Select all

wine program.exe &> output.txt
Locked