Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
289 views
in Technique[技术] by (71.8m points)

linux - Capturing Rscript errors in an output file

Unlike the similar command R CMD BATCH which by default produces an output file which contains any error messages which would cause the execution of a script to halt, I have not been able to find a way to do this with Rscript. I have tried using a pipe in my linux shell to achieve this:

RScript --no-save --no-restore --verbose myRfile.R > outputFile.Rout

but this will only pipe over any output that occurred before an error occurs, so the file outputFile.R doesn't contain any error information. Does anyone know how to get the capture any errors that occur in executing an R file using RScript and saving it to a file?

question from:https://stackoverflow.com/questions/14008139/capturing-rscript-errors-in-an-output-file

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Rscript --no-save --no-restore --verbose myRfile.R > outputFile.Rout 2> errorFile.Rout

To put the output and error in the same file (assuming sh/bash)

Rscript --no-save --no-restore --verbose myRfile.R > outputFile.Rout 2>&1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...