我注意到我的cron輸出在我的服務器上創建了index.html文件。我正在使用的命令是wget http://www.example.com 2>&1
。我也試過包括--reject "index.html*"
Cron輸出爲空
如何防止創建index.html
文件的輸出?
--2013-07-21 16:03:01-- http://www.examplel.com
Resolving example.com... 192.0.43.10
Connecting to www.example.com|192.0.43.10|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 0 [text/html]
Saving to: `index.html.9'
0K 0.00 =0s
2013-07-21 16:03:03 (0.00 B/s) - `index.html.9' saved [0/0]
哪位用戶是代表cronjob運行的?您? 'www'?其他人? – michaelb958
據推測'http:// www.my-url.com'解析爲'http:// www.my-url.com/index.html'。如果不創建'index.html',你爲什麼要運行'wget'?你期望輸出的內容寫在哪裏? –
@KeithThompson該網站是用CodeIgniter編寫的,所以我只使用'wget'來觸發我的'cron'控制器上的項目。 – Webnet