Nếu bạn có quyền truy cập vào một dòng lệnh, bạn có thể thích chạy tập lệnh của mình từ dòng lệnh với R CMD BATCH.
== bắt đầu nội dung của script.R ==
a <- "a"
a
How come I do not see this in log
== nội dung cuối của script.R ==
Tại dấu nhắc lệnh ("$" trong nhiều biến thể un * x, "C:>" trong windows), hãy chạy
$ R CMD BATCH script.R &
Dấu "&" là tùy chọn và chạy lệnh trong nền. Tên mặc định của tệp nhật ký đã được thêm "out" vào phần mở rộng, tức là script.Rout
== bắt đầu nội dung của script.Rout ==
R version 3.1.0 (2014-04-10) -- "Spring Dance"
Copyright (C) 2014 The R Foundation for Statistical Computing
Platform: i686-pc-linux-gnu (32-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.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
[Previously saved workspace restored]
> a <- "a"
> a
[1] "a"
> How come I do not see this in log
Error: unexpected symbol in "How come"
Execution halted
== nội dung cuối của script.Rout ==