Linux에서 cron 작업을 예약하는 방법은 무엇입니까?

Linux에서 cron 작업을 예약하는 방법은 무엇입니까?

스크립트 파일이 있습니다. .file 매월 1일에만 실행하면 됩니다.

크론 작업으로 이 작업을 어떻게 수행할 수 있나요?

52 07 * * * bash '/home/linux/tanu/cat.sh'

답변1

# * * * * *
# | | | | |
# | | | | day of week 0-7 (0 or 7 is Sun, or use names)
# | | | month 1-12 (or names)
# | | day of month 1-31
# | hour 0-23
# minute 0-59 

# runs on every 1st of month at 7:52am
52 7 1 * * bash '/home/linux/tanu/cat.sh'    

# runs on all other days at 7:52am
52 7 2-31 * * bash '/home/linux/tanu/cat.sh'     

이것이 맞기를 바랍니다.

관련 정보