Windows shell commands

Hi,

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

Thanks
Joerg

···

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

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/win32_console/

Alexis.

"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-forum.com/\.

This link
http://www.jamesbritt.com/articles/RubyAndVbaForWebDictionarySearches.html

may be of interest.

Mu.