difference between terminal and terminal from wine ?

Questions about Wine on macOS.
Locked
DoMassiot
Newbie
Newbie
Posts: 4
Joined: Thu May 31, 2018 6:44 am

difference between terminal and terminal from wine ?

Post by DoMassiot »

What is the difference between a standard terminal (bash) and the terminal open after calling wine (bash also) ?
using wine 3.0 on MacOs 13.13.4

using the following command :
>

Code: Select all

wine pgm.exe xxx
In a standard terminal window the xxx parameter is not passed to pgm.exe
In the terminal window open by calling wine it is passed

what are the difference between the two and how do I pass a parameter to pgm.exe with a shell call ?

Thanks in advance
DoMassiot
Newbie
Newbie
Posts: 4
Joined: Thu May 31, 2018 6:44 am

Solved -Re: difference between terminal and terminal from wi

Post by DoMassiot »

I solve the pb with a script modifying the path before calling wine :

export PATH=/Applications/Wine\ Stable.app/Contents/Resources/start/bin:/Applications/Wine\ Stable.app/Contents/Resources/wine/bin:$PATH:/Applications/Wine\ Stable.app/Contents/MacOS/
wine /Applications/xxx parameters
Locked