Greetings All, What is the procedure to make the open screen for R silent. I would to have my opening screen in Ubuntu 10.04 linux open to an empty terminal. Instead of the list of licenses and version of R that is being run. By the way, I am using RStudio as well. I have entered the following lines into my '/home/user/.Rprofile' but this is more of a 'cheat' ;) to me. .First <- function(){ cat(rep("\n",10)) } Cheers, M -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot-1.png Type: image/png Size: 50299 bytes Desc: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20111016/7985502e/attachment.png>
On 17/10/11 12:12, Matt Curcio wrote:> Greetings All, > What is the procedure to make the open screen for R silent. I would > to have my opening screen in Ubuntu 10.04 linux open to an empty > terminal. Instead of the list of licenses and version of R that is > being run. By the way, I am using RStudio as well. I have entered > the following lines into my '/home/user/.Rprofile' but this is more of > a 'cheat' ;) to me. > > .First<- function(){ > cat(rep("\n",10)) > }If you are starting from the command line, type R -q # q for quiet. On my (Ubuntu) system ``man R'' tells me this. cheers, Rolf Turner