17 18 19 20 21 22 23
# File 'lib/covaio.rb', line 17 def _io_exec(cmd) pipe = IO.popen(cmd) puts cmd while (line = pipe.gets) print line end end