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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.