[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Invoking a batch file with Ruby on Windows

brian.kejser

8/20/2006 11:29:00 PM

Hi

Does anyone know how I could invoke a Windows batch file (e.g.
MyBatchFile.bat) and check the ERRORLEVEL environment variable after the
batch file completes execution.

Thanks


1 Answer

Jano Svitok

8/21/2006 12:05:00 AM

0

On 8/21/06, brian.kejser@protexis.com <brian.kejser@protexis.com> wrote:
> Hi
>
> Does anyone know how I could invoke a Windows batch file (e.g.
> MyBatchFile.bat) and check the ERRORLEVEL environment variable after the
> batch file completes execution.
>
> Thanks

1. Try:
- `MyBatchFile.bat`
- system "MyBatchFile.bat"
- the same but with "cmd /c MyBatchFile.bat" (or /k , I don't remember exactly)

$? should contain the errorlevel (exit status)

I'm writing out of my head, if that won't help, just ask again,
tomorrow (i.e. in 10 hours) I can provide the right solution from my
code.

J.