[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Windows shell commands

Joerg Diekmann

2/16/2006 12:02:00 PM

Hi,

Is there a way to run windwos shell commands from Ruby?

Thanks
Joerg

--
Posted via http://www.ruby-....


2 Answers

Alexis Reigel

2/16/2006 12:32:00 PM

0

> Hi,
>
> Is there a way to run windwos shell commands from Ruby?
>
> Thanks
> Joerg
>

`dir`
OR
system('dir')
OR
exec('dir')
OR
http://raa.ruby-lang.org/project/win3...


Alexis.


Musashi

2/17/2006 6:18:00 AM

0


"Joerg Diekmann" <joergd@pobox.com> wrote in message
news:afcf4f311d8d157f8a64f8fe5efdca39@ruby-forum.com...
> Hi,
>
> Is there a way to run windwos shell commands from Ruby?
>
> Thanks
> Joerg
>
> --
> Posted via http://www.ruby-....
>
>

This link
http://www.jamesbritt.com/articles/RubyAndVbaForWebDictionarySea...

may be of interest.

Mu.