歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> SHELL編程

linux下設置定時執行shell腳本

linux下設置定時執行shell腳本   需求:每十分鐘跑一遍自己寫的某個shell腳本    vim /ect/crontab    最後一行添加一句:  */1 * * * * root sh /projects/updateDS.sh  >> /tmp/svnUpdateCrontab  */1 * * * * root svn update /projects/ds_front/trunk/ >> /tmp/svnUpdateCrontab  是將執行的腳本輸出的內容  寫入到tmp目錄下的svnUpdateCrontab文件中,svnUpdateCrontab文件可以是原本不存在的,在執行crontab 服務的時候創建    啟動crontab服務  關閉  重啟    /sbin/service crond start  /sbin/service crond stop  /sbin/service crond restart    查看crond狀態  service crond status  
Copyright © Linux教程網 All Rights Reserved