1. 작성
$ crontab -e
2. 보기
$ crontab -l
3. 전체 삭제
$ crontab -r
4. 실행주기 설정(요일: 0,7==일요일)
* * * * *
분(0-59) 시간(0-23) 일(1-31) 월(1-12) 요일(0-7)
5. 예제
# 매분 test.sh 실행
* * * * * /home/script/test.sh
# 매주 금요일 오전 5시 45분에 test.sh 를 실행
45 5 * * 5 /home/script/test.sh
# 매일 매시간 0분, 20분, 40분에 test.sh 를 실행
0,20,40 * * * * /home/script/test.sh
# 매일 1시 0분부터 30분까지 매분 tesh.sh 를 실행
0-30 1 * * * /home/script/test.sh
# 매 10분마다 test.sh 를 실행
*/10 * * * * /home/script/test.sh
# 5일에서 6일까지 2시,3시,4시에 매 10분마다 test.sh 를 실행
*/10 2,3,4 5-6 * * /home/script/test.sh
6. 백업
crontab -l > crontab_20190401.backup