Homea - mosop/run GitHub Wiki

Running Single Commands

require "run"

cmd = Run::Command.new("echo", [":)"])
cmd.run # => ":)"

And you can run the command again and again.

100.times do
  cmd.run
end