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... _______________________________________________ wine-users mailing list wine-users@xxxxxxxxxx http://www.winehq.org/mailman/listinfo/wine-users