在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行,但是抑制启动消息更优雅吗?
从命令行调用R:
--quiet --silent -q不要打印出最初的版权和欢迎信息。
--slave使R尽可能安静地运行。此选项旨在支持使用R为其计算结果的程序。它暗示
--quiet
和--no-save
。