cron task - I want to send the following web page request using a cronjob with raspberry pi -


can point me in right direction? want send following webpage request using cron job raspberry pi,

http://10.0.1.224/socket1on

thanks

install curl using aptitude install curl, crontab -e and...

0 * * * * curl http://10.0.1.224/socket1on >/dev/null 

(this runs once on each full hour - adjust necessary of course.)

this throws away answer; if need it, can save file, or course. errors mailed whatever mail account let mails forwarded to, cron.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -