With one sink, then release
.rxWithSink(file, code) .rxWithSinkBoth(file, code)
file
: the path to the file sink while running the code
code
: The code to run during the sinkWill return the results of the code
section
.rxWithSink
captures output from cat
.rxWithSinkBoth
captures output from cat
and message
t <- tempfile() .rxWithSink(t, cat("message\n")) cat("cat2\n") # now you can see the cat2 lines <- readLines(t) unlink(t)
Matthew Fidler
Useful links