Heim  >  Fragen und Antworten  >  Hauptteil

Das Prozentzeichen % funktioniert in Crontab nicht

<p>Ich habe ein Cron-Problem mit <code>curl</code>:</p> <pre class="brush:php;toolbar:false;">curl -w "%{time_total}n" -o /dev/null -s http://myurl.com >> /pre> <p> Funktioniert hervorragend und fügt eine Zeile mit total_time in die Protokolldatei ein. </p> <p>Aber die gleiche Zeile wie cron bewirkt nichts. </p> <p>Dies ist kein Pfadproblem, da <code>curl http://myurl.com >> funktioniert. </p>
P粉818088880P粉818088880443 Tage vor530

Antworte allen(1)Ich werde antworten

  • P粉340264283

    P粉3402642832023-08-25 10:13:48

    %crontab 的特殊字符。来自man 5 crontab

    所以你需要转义%字符:

    curl -w "%{time_total}\n" -o /dev/null -s http://myurl.com >> ~/log

    curl -w "\%{time_total}\n" -o /dev/null -s http://myurl.com >> ~/log
             ^

    Antwort
    0
  • StornierenAntwort