I\'m using IO.popen in Ruby to run a series of command line commands in a loop. I then need to run another command outside of the loop. The command outside of t
IO.popen
Do you need the output of popen? If not, do you want to use Kernel#system or some other command?
popen
Kernel#system