how to send online html or css or js file back up in each hour to and email address as a attachment?

-1

0

For example this a css file

http://sstatic.net/su/all.css

I want to send this file from this link as a email attachment to an email address in each hour or any specified time interval.

and to download on local PC in a specified folder.

metal gear solid

Posted 2010-01-20T21:22:28.853

Reputation: 7 796

possible duplicate of how to send online html or css or js file back up in each hour to and email address as a attachment?

– Mehper C. Palavuzlar – 2010-06-30T12:03:04.413

@mehper: good find. @metal gear solid: please don't doublepost your questions. merging this into the duplicate. – quack quixote – 2010-07-01T04:16:23.650

@quack quixote - but both are same and one question – metal gear solid – 2010-07-02T18:55:24.210

those comments were originally posted to http://superuser.com/questions/103675/how-to-take-backup-of-any-online-file-in-email -- that was the doublepost that got merged. the merge link is available in the revision history of this post: http://superuser.com/posts/98516/revisions

– quack quixote – 2010-07-02T19:08:59.417

Answers

1

In Linux, you can start crontab editing with crontab -e and add a following line: 0 * * * * wget http://sstatic.net/su/all.css -O /backups/all.css && uuencode /backups/all.css all.css | sendmail your@email.com. This will update CSS and send emails every hour.

uudecode and sendmail are only for example, you may use other email client/server.

whitequark

Posted 2010-01-20T21:22:28.853

Reputation: 14 146

0

try using a 'web cron':

akira

Posted 2010-01-20T21:22:28.853

Reputation: 52 754