PDA

View Full Version : Run a cronjob to call (execute) a flash file.


edge
31st March 2010, 23:27
Not sure if this can be done.

I would like to run a cron job every xx hours that will call (execute) a flash file.

All the cronjob needs to do is make a "call" to http://domain.com/file.swf?do=this

It does not need to get data back from the "call".

Anyone here who might know how to do this?

falko
1st April 2010, 15:15
You can do this with wget, e.g.
/usr/bin/wget -O - http://domain.com/file.swf?do=this

edge
1st April 2010, 17:02
Yep.. That did the trick. Thank you.