我想设置一个cron任务,每个月的第一天运行一个脚本,除了1月1日.我怎样才能做到这一点?
我可以尝试这样的事情:0 0 1 2-12*?
它可以是下面的东西:
0 0 1 2,3,4,5,6,7,8,9,10,11,12 *
Minutes [0-59] | Hours [0-23] | | Days [1-31] | | | Months [1-12] | | | | Days of the Week [Numeric, 0-6] | | | | | * * * * * home/path/to/command/the_command.sh
这对于您确定用法很有用。