Cron log performance info

0

Oi eu estou fazendo um cron job

0 20 * * * curl http://server/import.php >> ~/cronlog/importdate +\%Y\%m\%d\%H\%M\%S.html 2>&1

e eu estou tendo o seguinte registro de velocidade em todos os lugares no arquivo de log como posso alterá-lo para mostrar no final do arquivo ou não mostrar.

  % Total    % Received % Xferd  Average Speed   Time    Time     Time Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:--
--:--:--     0   0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0 Text html 

  0     0    0     0    0     0      0      0 --:--:--  0:00:03
--:--:--     0   0     0    0     0    0     0      0      0 --:--:--  0:00:04 --:--:--     0   0     0    0     0    0     0      0      0
--:--:--  0:00:05 --:--:--     0 Text html    0     0    0     0    0     0      0      0 --:--:--  0:00:06 --:--:--     0   0     0    0     0  0     0      0      0 --:--:--  0:00:07 --:--:--     0   0     0    0  0    0     0      0      0 --:--:--  0:00:08 --:--:--     0   0     0  0     0    0     0      0      0 --:--:--  0:00:09 --:--:--     0
    
por Pascal 20.06.2017 / 14:35

1 resposta

1

Você deve executar seu script desta maneira:

0 20 * * * curl -s http://server/import.php >> ~/cronlog/import'date +\%Y\%m\%d\%H\%M\%S'.html 2>&1

Isto irá suprimir a saída da barra de progresso em STDOUT / STDERR

    
por 20.06.2017 / 14:48

Tags