To help me learn Haskell, I want to write a script for automatically downloading the latest chromium mini_installer.exe every two days and installing it. Any suggestions? I'm using Windows 7.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use one of the URL fetching libraries. An example is download-curl. Then it is as simple as:
To implement "cron"-like behavior of sleeping for 2 days, you can either use your operating system services, or implement a sleeping mechanism. |
||||
|
|