It compensates for someone who doesn't know about the -O option for wget -- specifically, wget -O /dev/null.
More specifically, the wget call in that crontab hits a URL (presumably to trigger some sort of server-side processing -- always a sign of an absolute idiot of a web application or hosting environment). Since wget downloads files, it will store the downloaded file named recur it in the current directory. Then, a minute later, another cronjob deletes the file that was created, for tidiness.
It compensates for someone who doesn't know about the
-O
option forwget
-- specifically,wget -O /dev/null
.More specifically, the
wget
call in that crontab hits a URL (presumably to trigger some sort of server-side processing -- always a sign of an absolute idiot of a web application or hosting environment). Sincewget
downloads files, it will store the downloaded file namedrecur
it in the current directory. Then, a minute later, another cronjob deletes the file that was created, for tidiness.