On Wednesday, June 25, 2014 4:07:48 PM UTC-4, Laszlo Hars wrote: > > I know they work by themselves. I just don't know, how I can use them to > capture all the console output in a variable, or in a file. Could you post > some functional code? >
julia> rdstdout, wrstdout = redirect_stdout()
(Pipe(open, 0 bytes waiting),Pipe(open, 0 bytes waiting))
julia> print("hello")
julia> s = readavailable(rdstdout)
"hello"
julia> clipboard(s)
