On Windows, using nmake, how can I include a rule that downloads a file from
a location? Something like wget, but on Windows.
On Windows, using nmake, how can I include a rule that downloads a file
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.
On modern Windows (Vista, Windows 7, later), you have Powershell available, so you can do this:
If you don’t like to depend on powershell, you can use a wget command line tool for windows, like this:
The source for a usable wget tool is available here.