Cron Creating Lots of Files in Home Directory
Sep 22, 2009 · 1 minute readCategory: linux
This is post is now quite old and the the information it contains may be out of date or innacurate.
If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub
I was using wget to call on some PHP scripts to run periodically. wget will do what it says on the tin and save the files. If you don’t want it to do that, you need to add the following in front of your wget command:
-O /dev/null
eg
wget -O /dev/null http://script.com/script.php