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
Apparently the canonical way to do this is:
Process.wait(popened_io.pid)