Jeśli masz dostęp do wiersza poleceń, możesz preferować uruchomienie skryptu z wiersza poleceń za pomocą R CMD BATCH.
== rozpocznij zawartość skryptu.R ==
a <- "a"
a
How come I do not see this in log
== koniec treści skryptu.R ==
W wierszu polecenia („$” w wielu wariantach un * x, „C:>” w systemie Windows) uruchom
$ R CMD BATCH script.R &
Końcowy znak „&” jest opcjonalny i uruchamia polecenie w tle. Domyślna nazwa pliku dziennika ma „out” dołączony do rozszerzenia, tj. Script.Rout
== rozpocznij zawartość 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
== koniec zawartości script.Rout ==