How to suppress R startup message?

Beliavsky

Running on Windows 7

rterm < foo.r > temp.txt

The output file starts with:

R version 3.0.1 (2013-05-16) -- "Good Sport"
Copyright (C) 2013 The R Foundation for Statistical Computing
Platform: x86_64-w64-mingw32/x64 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

and further text.

How do I suppress this message? I did not see an option to do this in the Rprofile.site file. Of course I can use another program to delete the first N lines of the output file, but it is more elegant to suppress the startup message?

sds

Invoking R from the command line:

--quiet
--silent
-q

Do not print out the initial copyright and welcome messages.

--slave

Make R run as quietly as possible. This option is intended to support programs which use R to compute results for them. It implies --quiet and --no-save.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Suppress error message in R

From Dev

Suppress error message in R

From Dev

How to suppress download.file() "trying URL..." message in R?

From Dev

How to suppress warning message in R regarding closing unused connection?

From Dev

How to suppress the warming message by R when using commandArgs()

From Dev

How to suppress error message of a command?

From Dev

How to suppress OpenCV error message

From Dev

Suppress convergence message in nnet multinom function in R

From Dev

How to suppress [no test files] message on go test

From Dev

PostgreSQL - How to suppress query statement message

From Dev

How to suppress certain error message in 'find' command?

From Dev

How to suppress File in use alert message

From Dev

Suppress Message Box R6025 Pure Virtual Function Call

From Dev

Warning message at R startup (slidify, rmarkdown)

From Dev

How do I suppress the "New release '12.10' available" message?

From Dev

How do I suppress the "New release '12.10' available" message?

From Dev

How to suppress a message from a program while installing it to use in a bash program?

From Dev

How to suppress PowerShell error message during variable assignment

From Dev

How can you always suppress messages in R?

From Dev

how to display startup error message in windows service?

From Dev

Suppress library message output

From Dev

tryCatch suppress error message

From Dev

Suppress server message in rsync

From Dev

matlab - suppress error message backtrace

From Dev

Suppress specific MySQL warning message

From Dev

How can I suppress the creation of a plot while calling a function in R?

From Dev

How to suppress R Shiny's numericInput instant update?

From Dev

How to display a message on startup about new feature only to pervious users

From Dev

How to suppress the error message when dividing 0 by 0 using np.divide (alongside other floats)?

Related Related

  1. 1

    Suppress error message in R

  2. 2

    Suppress error message in R

  3. 3

    How to suppress download.file() "trying URL..." message in R?

  4. 4

    How to suppress warning message in R regarding closing unused connection?

  5. 5

    How to suppress the warming message by R when using commandArgs()

  6. 6

    How to suppress error message of a command?

  7. 7

    How to suppress OpenCV error message

  8. 8

    Suppress convergence message in nnet multinom function in R

  9. 9

    How to suppress [no test files] message on go test

  10. 10

    PostgreSQL - How to suppress query statement message

  11. 11

    How to suppress certain error message in 'find' command?

  12. 12

    How to suppress File in use alert message

  13. 13

    Suppress Message Box R6025 Pure Virtual Function Call

  14. 14

    Warning message at R startup (slidify, rmarkdown)

  15. 15

    How do I suppress the "New release '12.10' available" message?

  16. 16

    How do I suppress the "New release '12.10' available" message?

  17. 17

    How to suppress a message from a program while installing it to use in a bash program?

  18. 18

    How to suppress PowerShell error message during variable assignment

  19. 19

    How can you always suppress messages in R?

  20. 20

    how to display startup error message in windows service?

  21. 21

    Suppress library message output

  22. 22

    tryCatch suppress error message

  23. 23

    Suppress server message in rsync

  24. 24

    matlab - suppress error message backtrace

  25. 25

    Suppress specific MySQL warning message

  26. 26

    How can I suppress the creation of a plot while calling a function in R?

  27. 27

    How to suppress R Shiny's numericInput instant update?

  28. 28

    How to display a message on startup about new feature only to pervious users

  29. 29

    How to suppress the error message when dividing 0 by 0 using np.divide (alongside other floats)?

HotTag

Archive