리눅스 서버에서 crontab 사용법
서버/리눅스 2013. 6. 26. 14:37crontab -l : 현재 등록된 crontab 내용 출력
crontab -e : rontab 에 등록된 내용 수정
10 3 * * 0,4 /etc/cron.d/logchecker
10 3 * * 0 /usr/lib/newsyslog
15 3 * * 0 /usr/lib/fs/nfs/nfsfind
1 2 * * * [ -x /usr/sbin/rtc ] && /usr/sbin/rtc -c > /dev/null 2>&1
---------- ========================
1 2 3 4 5 program
1 : minute (0-59),
2 : hour (0-23),
3 : day of the month (1-31),
4 : month of the year (1-12),
5 : day of the week (0-6 with 0=Sunday)