K 10 svn:author V 3 knu K 8 svn:date V 27 2001-03-16T09:02:00.000000Z K 7 svn:log V 256 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 END