1. 程式人生 > >Linux 下定時任務crontab的備忘

Linux 下定時任務crontab的備忘

檢視定時任務的狀態: service crond status
檢視定時任務列表:crontab -l
編輯定時任務:crontab -e
可以指定編輯某使用者的定時任務:crontab -u oracle -e
定時任務的寫法:

# 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

如果定時任務本身已經定義到某個使用者下了,例如使用 crontab -u oracle -e來編輯定時任務(該任務由oracle使用者執行),那麼在定義任務內容時,“user-name”處就不用再寫執行的使用者了。