I'm running R from Unix and would like to see all output without any pop-ups. So, for example, if in unix I run
R -f test.r
Where test.r is
value = pnorm(rnorm(10000))
hist(value,breaks=10)
I would like the output to include a histogram drawn in the terminal. Is this possible? I'm assuming I need some kind of Unix plotting package.