A
Aleksandr Levchuk
It was surprising when the following code froze:
require 'open3'
i, o, e = Open3:open3('/bin/bash')
c = o.getc
puts c.chr # expecting the first character of my bash prompt
--
require 'open3'
i, o, e = Open3:open3('/bin/bash')
c = o.getc
puts c.chr # expecting the first character of my bash prompt
--