0

What can I do to suppress the startup message in RStudio?

I tried without success:

.First <- function(){cat("\014")}
user
  • 309
  • 1
  • 9

1 Answers1

1

If you are on a Linux/Unix based system, you can make an alias in your ~/.bashrc file like so:

alias R="R -q"
van Nijnatten
  • 404
  • 5
  • 15