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 サーバーでスクリプトを自動的に (たとえば、毎週月曜日に) 実行するようにスケジュールできるかどうか疑問に思っていました。
サーバーでシェルと CRON にアクセスできる場合は、次のような crontab エントリを介してこれを実現できます。
0 7 * * mon /usr/bin/Rscript $HOME/scriptname.R >> $HOME/tmp/out 2>&1
これは私が使っているものを少し変更したものです。この例では、毎週月曜日の午前 7 時にスクリプトを実行します。