I want to use cURL to automatically download files. Tho, the files have the current date in their name and I would like to know how to automate the name to the current date if that makes sense! :) Ex.:
@echo [off]
cd F:\Documents
f:
cURL https://dd.weather.gc.ca/model_hrdps/east/grib2/18/001/CMC_hrdps_east_TMP_TGL_120_ps2.5km_2020110418_P001-00.grib2 -o "HRDPS 18z TMP_TGL_120 f001.grib2"
pause
The 2020110418 in the file name would be today's date and I would like it to be automated
It is my first project with batch files. Hope it is clear and thanks for the help! :)