我注意到在我的用户目录(/home/user/
)中有很多像....一样的文件。
index.html.25
index.html.17
index.html.23
index.html.5
index.html.9
index.html.1
index.html.32
index.html.4
还有其他文件恰好是我的crons的名字。我已经验证这些文件中没有内容。他们的文件大小为0。
我的crons使用wget [url]
问题是,这些crons都没有使用我的索引页面(PHP,而不是html)。
有关为何会发生这种情况的任何想法?
答案 0 :(得分:2)
你可以尝试
wget -O ${SOME_NAME} ${url}
这将替换任何现有文件(如果存在)
或者如果您不需要写入磁盘
wget -q -O- ${url}