Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是想知道是否可以安排脚本在 RStudio 服务器上自动运行(例如每周一)?
如果您在服务器上有 shell 和 CRON 访问权限,您可以通过 crontab 条目来完成此操作,如下所示:
0 7 * * mon /usr/bin/Rscript $HOME/scriptname.R >> $HOME/tmp/out 2>&1
这是从我使用的一个轻微修改的。此示例将在每周一早上 7 点运行您的脚本。