首頁 > 問答 > 主體
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 ^
首頁
課程
問答
我的