Skip to content

Instantly share code, notes, and snippets.

@Bobochka
Forked from aurels/gist:843967
Created March 7, 2016 12:46
Show Gist options
  • Select an option

  • Save Bobochka/48b07b5c5cbdc5dac815 to your computer and use it in GitHub Desktop.

Select an option

Save Bobochka/48b07b5c5cbdc5dac815 to your computer and use it in GitHub Desktop.
stream system command output to STDOUT (ruby)
IO.popen('ant run') do |io|
while (line = io.gets) do
puts line
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment