is it opossible to run batch

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
didencool
Level 2
Level 2
Posts: 24
Joined: Fri Apr 25, 2008 1:13 am

is it opossible to run batch

Post by didencool »

Hi All
subject...
Packegers make release of game that need to run batch file...
Is it possible to run it directly or it is needed to rewrite in shell script?
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: is it opossible to run batch

Post by vitamin »

didencool wrote:Hi All
subject...
Packegers make release of game that need to run batch file...
Is it possible to run it directly or it is needed to rewrite in shell script?

Code: Select all

cmd file.bat
didencool
Level 2
Level 2
Posts: 24
Joined: Fri Apr 25, 2008 1:13 am

Re: is it opossible to run batch

Post by didencool »

vitamin wrote:

Code: Select all

cmd file.bat
Yes it simple :)

thank you :)
didencool
Level 2
Level 2
Posts: 24
Joined: Fri Apr 25, 2008 1:13 am

Re: is it opossible to run batch

Post by didencool »

vitamin wrote: cmd file.bat

Code: Select all

> WINEDEBUG=-all wine cmd.exe setup.bat
�����CMD 1.0-rc1
that is all I got :(
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: is it opossible to run batch

Post by vitamin »

didencool wrote:
vitamin wrote: cmd file.bat

Code: Select all

> WINEDEBUG=-all wine cmd.exe setup.bat
�����CMD 1.0-rc1
that is all I got :(
It's the same syntax as on windows:

Code: Select all

cmd /c test.bat
Locked