I have a problem.
I want to run a ruby script from another ruby script and capture it\'s output information while letting it output to the screen too.
io = IO.popen(<your command here>) log = io.readlines io.close
Now in log variable you have the output of executed command. Parse it, convert it, or do whatever you want.