I'm about a n00b in WINE world...
I was wondering about the implications and usage of the command as well as in this topic subject.
I'm asking for clarification: why WINE use that??
I always learn:
Code: Select all
wine program.exe
- installing
orCode: Select all
$ WINEPREFIX=/myprefix/path wine /path/program_installer.exe
OKCode: Select all
extracting the program_installer.zip into /myprefix/path/drive_c/program/
---
- executing (my way
)
some programs work, sometimes other programs crash on startup, sometimes there are programs that won't launch at all!Code: Select all
$ WINEPREFIX=/myprefix/path wine /myprefix/path/drive_c/Program\ Files/program/program.exe
---
- executing (WINE way... Why?)
always works!
Code: Select all
env WINEPREFIX=/myprefix/path /usr/bin/wine C:\\windows\\command\\start.exe /Unix /myprefix/path/dosdevices/c:/something/{program.lnk or program.exe}
Please explain, thanks!