[R]利用.sh檔,在linux中建立R排程

Allen
NoteOcean
Published in
Feb 24, 2021

首先要有個.sh檔

linux cmd:

#創造.sh檔

touce test.sh

#修改設定.sh內容

vi test.sh ((記得保存後退出

#給予此.sh檔執行的權限

chmod a+x test.sh

#test.sh內容,表示利用r執行某一個.R檔

……/R CMD BATCH xxx.R

#之後打開排程的設定檔

crontab -e

新增:

*/5 * * * * /home/ubuntu/test.sh:每五分鐘執行一次測試 shell script。

--

--