freebsd-ports/shells/ruby-shell/pkg-comment
Akinori MUSHA f8eeebacaa Add ruby-shell, a Ruby library to run commands and control jobs like a
shell.  Pipes and redirections work just as expected:

  sh = Shell.cd("/foo")
  sh.cat("bar") | sh.tee("baz") > "baa"
  # or
  sh.transact do
    cat("bar") | tee("baz") > "baa"
  end
2001-03-16 09:02:00 +00:00

1 line
61 B
Text

A Ruby library to run commands and control jobs like a shell