From: Jano Svitok Date: 2007-07-12T00:01:48+09:00 Subject: Re: running linux command from inside On 7/11/07, Jeffrey Bowen wrote: > I've ran a search in ruby-talk but I couldn't find an > answer so... > > Can I run a linux command inside a ruby program. Like > > history > => 63 history > history -d63 You are probably looking for `` or Kernel#system. for example: puts `ls /etc`