This script when run, downloads files from a website and stores them locally.

@echo off
TITLE Download Files
CD "C:\Downloaded Data\[Data Title]"
curl -U user:password --proxy http://proxy.company.com:8080 "[http/s location of file]" > [name of file]

Source

https://www.scrapingbee.com/blog/curl-proxy/

  • No labels