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