Created
April 20, 2012 18:50
-
-
Save elcuervo/2430999 to your computer and use it in GitHub Desktop.
EM send data popen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IO.popen('./test') do |io| | |
begin | |
while line = io.readline do | |
send_data line | |
end | |
rescue EOFError => e | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment