首页 > 问答 > 正文
P粉3402642832023-08-25 10:13:48
% 是 crontab 的特殊字符。来自man 5 crontab:
%
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 ^
首页
课程
问答
我的