# 100년 전 오늘 - 자동 실행 크론 설정 # 매일 오전 9시에 자동 실행 (한국어 오전 10:10 발행 전) 0 9 * * * /var/www/html/100years/run_today.sh >> /var/www/html/100years/logs/cron.log 2>&1 # 또는 매일 오후 9시에 자동 실행 (영어 저녁 10:10 발행 전) 0 21 * * * /var/www/html/100years/run_today.sh >> /var/www/html/100years/logs/cron.log 2>&1 # 크론 설정 방법: # 1. crontab -e 실행 # 2. 위 라인 중 하나 추가 # 3. 저장 후 종료 # 크론 확인: # crontab -l # 로그 확인: # tail -f /var/www/html/100years/logs/cron.log