Marcelo Arroyo
2009-Aug-08 15:00 UTC
[Wine] How to pass flags (arguments) to an application
Hi everyone. I have a problem running a Windows appilcation with wine. The application is a Acucobol program. When I run "wine wrun32.exe myprogram" it works ok. When I run "wine wrun32.exe -C config.cfg myprogram" wine says myprogram doesn't exist. Any help? -- Marcelo Arroyo
Marcelo Arroyo wrote:> When I run "wine wrun32.exe myprogram" it works ok. > When I run "wine wrun32.exe -C config.cfg myprogram" wine says > myprogram doesn't exist.You sure that's Wine what tells you "myprogram doesn't exist"? Not the "wrun32.exe"? Remember, if you specifying paths for windows programs, those paths have to be windows paths not UNIX. Ex: Code: # wrong wine wrun32.exe -C config.cfg /home/user/myprogram.exe # correct wine wrun32.exe -C config.cfg 'z:\home\user\myprogram.exe'