Software Knowledge

  1. Home
  2. Docs
  3. Software Knowledge
  4. LINUX
  5. Linux: ตัวอย่าง Crontab
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Linux: ตัวอย่าง Crontab

crontab -l      #ดูว่ามีการ Set crontab ของ User ตัวเองอะไรบ้าง

crontab -e  #ต้องการเพิ่มเติมแก้ไข crontab ของตัวเอง (default จะเรียกใช้ vi editor ในการ edit)

FieldDescriptionAllowed Value
MINMinute field0 to 59
HOURHour field0 to 23
DOMDay of Month1-31
MONMonth field1-12
DOWDay Of Week0-6    (Sun-Sat)
CMDCommandAny command to be executed.

30 09 1 * * /home/monthly.sh

00 6,18 * * *  /home/2timeAday.sh

00 09-18 * * *  /home/RangTime.sh

00 09-18 * * 1-5  /home/RangTimeDay.sh

*/10 * * * *    /home/Every10Min.sh

Last Updated on Saturday, 16 August 2014 23:17