When running
R CMD BATCH [options] filename.r
I want to control where the output is printed. I can suppress the creation of the .Rout file with
R CMD BATCH [options] filename.r /dev/null
but is it possible to direct the output to the screen? Like when I run it by
R [options] < filename.r
?