[Wine] Re: NOLF2 - Registry key?

Molle Bestefich molle.bestefich at gmail.com
Sun Sep 4 07:59:57 CDT 2005


Randall Walls wrote:
> Anyway to redirect the trace output to a file so I can grep through it?
> There is a hugh amount of info that comes out of the trace.

Not a friend of Google, eh?
Seems a bit odd that you know grep but don't know how to use pipes. Hm..

Guessing that the trace output appears on stderr, do:
$ WINEDEBUG=+reg,+whatever wine app.exe 2> tracefile.log
to redirect stderr to a log file.

Or, to redirect both stdout and stderr to the same file:
$ WINEDEBUG=+reg,+whatever wine app.exe > tracefile.log 2>&1

Hm...



More information about the wine-users mailing list