Fix: For When Cron Job Leave Mess in the Home Directory
Q: Why do I always get crap in my home directory even though my cron job looks like this:
*/15 * * * * wget http://site.com/cron.php >/dev/null 2>&1
A:
*/15 * * * * wget -O /dev/null http://site.com/cron.php >/dev/null 2>&1
This puts the output (-O) down the [unix] drain.