File size: 335 Bytes
802d9fe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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."