Files
cheatsheet-tldr/tldr/rscript
2025-12-02 00:21:15 +00:00

26 lines
516 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# Rscript
> Run a script with the R programming language.
> More information: <https://manned.org/Rscript>.
- Run a script:
`Rscript {{path/to/file.R}}`
- Run a script in vanilla mode (i.e. a blank session that doesn't save the workspace at the end):
`Rscript --vanilla {{path/to/file.R}}`
- Execute one or more R expressions:
`Rscript -e {{expression1}} -e {{expression2}}`
- Display version:
`Rscript --version`