How to download a list of URLs without using wget, only depth 1 (do not follow links) on Windows
On Windows 10, I am looking for software (or another way) to download a list of URLs, but only the initial page. For example say the landing page for www.example.com was index.html, do not follow any links on the page, only download www.example.com/index.html. The solution must be completely free and not involve using wget.
Solution 1:
You can use curl:
curl -o sitename.html https://www.example.com