在Windows 7上运行
rterm < foo.r > temp.txt
输出文件以:
开头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.
以及进一步的文字。
如何取消此邮件?我没有看到在Rprofile.site文件中执行此操作的选项。当然我可以使用另一个程序来删除输出文件的前N行,但是抑制启动消息会更优雅吗?
答案 0 :(得分:4)
Invoking R from the command line:
--quiet --silent -q
请勿打印出初始版权和欢迎信息。
--slave
让R尽可能安静地跑。此选项旨在支持程序 它使用R来计算它们的结果。它意味着
--quiet
和--no-save
。