convert Ruby to C languge, Would anyone care to take a look?
Posted
by alaamh
on Stack Overflow
See other posts from Stack Overflow
or by alaamh
Published on 2010-04-26T09:40:56Z
Indexed on
2010/04/26
10:13 UTC
Read the original article
Hit count: 169
I have seen this sample written in Ruby code, how i can simulate it in C language?
Open3.popen3(command) do |stdin, stdout, stderr|
@stop_stdin = stdin
while !stdout.eof do
output = stdout.read(1024 * 100)
list_pipes.each do |out|
out.print output
end
end
end
© Stack Overflow or respective owner