Executando um trabalho cron não padrão

0

SO: Ubuntu 14.04

Eu gostaria de executar um script PHP /home/app/myapp.php no minuto 37 a cada duas horas entre 5:00 e 19:00 GMT de segunda a sexta-feira durante o ano todo.

Qual é a sintaxe do arquivo crontab para isso?

    
por EastsideDeveloper 30.01.2015 / 23:43

1 resposta

2
37 5-19/2 * * 1-5

Desde então, citando a página de manual :

  field          allowed values
  -----          --------------
  ...
  day of week    0-7 (0 or 7 is Sun, or use names)

Ranges of numbers are allowed.  Ranges are two numbers separated with a hyphen.    
...    
Step  values  can be used in conjunction with ranges.  Following a range with ''/<number>'' specifies skips of the number's value through the range.

Names can also be used for the ''month'' and ''day of week'' fields.  ...  Ranges or lists of names are not allowed.
    
por muru 31.01.2015 / 01:27