Skip to content

Instantly share code, notes, and snippets.

/popen3.rb Secret

Created March 22, 2016 13:44
Open3.popen3('ls', '-al') do |stdin, stdout, stderr|
stdout.read.split("\n").each do |line|
puts line
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment