Hi All,
Wine 1.7.42
I am doing this in a bash script:
OldRev="$(wine /home/linuxutil/filever.exe "${OldFileName}" | awk '{print $5}')"
Which looks like this from "set -x"
+++ wine /home/linuxutil/filever.exe kes10winsp1_en_aes56-10.2.2.10535.exe
+++ awk '{print $5}'
It works, but my terminal windows gets filled with trash from Wine. A lot of trash. For instance:
fixme:service:scmdatabase_autostart_services Auto-start service L"A2DDA" failed to start: 2
How do I rid myself of this trash? In my bash code line above, how do I redirect all this Wine trash to /dev/null? Is there a "--quiet" option for the Wine command line?
Many thanks,
-T
How to I dump wine trash in a bash script?
-
- Level 3
- Posts: 98
- Joined: Thu Aug 21, 2014 6:40 pm
Re: How to I dump wine trash in a bash script?
WINEDEBUG=-allToddAndMargo2 wrote: Is there a "--quiet" option for the Wine command line?
-
- Level 3
- Posts: 98
- Joined: Thu Aug 21, 2014 6:40 pm
[Solved] Re: How to I dump wine trash in a bash script?
That did the trick. Thank you!dimesio wrote:WINEDEBUG=-allToddAndMargo2 wrote: Is there a "--quiet" option for the Wine command line?
$ WINEDEBUG=-all wine /home/linuxutil/filever.exe kes10winsp1_en_aes56-10.2.2.10535.exe | awk '{print $5}'
10.2.2.10535