Heim > Fragen und Antworten > Hauptteil
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 ^