Rscript.exe -e "1"
# NULL
# [1] 1
Rscript.exe always prints a null in windows system.
Any method to forbid it?
Environment
- R: 4.3.3
Rscript.exe -e "1"
# NULL
# [1] 1
Rscript.exe always prints a null in windows system.
Any method to forbid it?
That's likely coming from a profile file, either
Rprofile.siteor.Rprofile. See?Startupfor information on where those files are found.Use
Rscript --vanilla -e "1"to avoid running them.