olympiads / Slovenia /raw /sl-massc /solution.sh
LxYxvv's picture
add pdf files
802d9fe
Raw
History Blame
335 Bytes
#!/bin/bash
# Base URL
baseUrl="https://www.dmfa.si/Tekmovanja/GetPDF.ashx?src="
for year in {2001..2015}
do
# Construct the URL
url="${baseUrl}MaSSC_Podrocno_${year}.pdf"
# Download the file
echo "Downloading ${url}..."
curl -o "MaSSC_Podrocno_${year}.pdf" "${url}"
done
echo "All files have been downloaded."