crontab

ExH

Verified User
Joined
Feb 1, 2007
Messages
6
I create cron job for user:
/usr/bin/wget http://xxxx/cron/mostreaded > /dev/null 2>&1

All works fine, but every time when cron execute script in user account directory created file named "mostreaded".

How can i disable file creation?
 
You have to change the command you are using in the cronjob. Its doing exactly what you told it to do. You cannot say wget a file and then complain that it gets it. If you don't want the file saved then don't use wget.
 
ok.
I need open my script via http.
How can i make it except wget?
 
Back
Top