我有perl脚本,我希望每天在固定的时间使用cron作业执行?
答案 0 :(得分:1)
$ crontab -e 1 2 3 4 5 / path_to_your_perl_script
保存:wq
其中,
1: Minute (0-59) 2: Hours (0-23) 3: Day (0-31) 4: Month (0-12 [12 == December]) 5: Day of the week(0-7 [7 or 0 == sunday]) /path_to_your_perl_script - Script or command name to schedule