linux crontab定时任务常用梳理
生活随笔
收集整理的這篇文章主要介紹了
linux crontab定时任务常用梳理
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
文章目錄
- 1. 基本格式
- 2. 基本命令
- 3. 常用案例
1. 基本格式
# Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed分 時(shí) 天 月 星期2. 基本命令
#當(dāng)前用戶(hù)編輯定時(shí)任務(wù)執(zhí)行頻次配置文件 crontab -e #查看當(dāng)前用戶(hù)下的定時(shí)任務(wù)列表 crontab -l #使用root用戶(hù)重新啟動(dòng) service crond restart3. 常用案例
#1.一直在執(zhí)行 * * * * * /bin/sh /home/oracle/1.sh#2.每天11點(diǎn)25分執(zhí)行 25 11 * * * /bin/sh /app/2.sh#3.每天凌晨4點(diǎn)執(zhí)行 0 4 * * * /bin/sh /app/3.sh#4.設(shè)置定時(shí)器定時(shí)執(zhí)行腳本(每天凌晨2點(diǎn)08分執(zhí)行一次): 8 2 * * * /bin/sh /app/download_y.sh#5.設(shè)置定時(shí)器定時(shí)執(zhí)行腳本(每年1月2日凌晨2點(diǎn)38分執(zhí)行一次): crontab -e 38 2 2 1 * /bin/sh /app/download_pep_y.sh#6.設(shè)置定時(shí)器定時(shí)執(zhí)行腳本(每周六凌晨2點(diǎn)18分執(zhí)行一次,): 18 2 * * 6 /bin/sh /app/accuitydownload_m.sh總結(jié)
以上是生活随笔為你收集整理的linux crontab定时任务常用梳理的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: linux用户、用户组 增删改查专栏
- 下一篇: plsql不加date