Skip to content

Instantly share code, notes, and snippets.

@Wikinaut
Created December 25, 2023 12:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wikinaut/e169f0099b95c1cace00b39afdbedbae to your computer and use it in GitHub Desktop.
Save Wikinaut/e169f0099b95c1cace00b39afdbedbae to your computer and use it in GitHub Desktop.
ELV Journal 1979-2023
#!/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