Created
December 25, 2023 12:08
-
-
Save Wikinaut/e169f0099b95c1cace00b39afdbedbae to your computer and use it in GitHub Desktop.
ELV Journal 1979-2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
i=1979 | |
for j in 00 01 02 03 04 05 06; do | |
wget --content-disposition https://files2.elv.com/public/downloads/journal/elvjournal_${i}_${j}.pdf | |
done | |
i=1980 | |
for j in 07 08 09 10 11 12; do | |
wget --content-disposition https://files2.elv.com/public/downloads/journal/elvjournal_${i}_${j}.pdf | |
done | |
j=13 | |
for i in {1981..1988}; do | |
for jj in {1..6}; do | |
wget --content-disposition https://files2.elv.com/public/downloads/journal/elvjournal_${i}_${j}.pdf | |
j=$((j+1)) | |
done | |
done | |
for i in {1989..2023}; do | |
for j in 01 02 03 04 05 06; do | |
wget --content-disposition https://files2.elv.com/public/downloads/journal/elvjournal_${i}_${j}.pdf | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment