Skip to content

Instantly share code, notes, and snippets.

@EmperorPenguin18
Created May 10, 2021 23:09
Show Gist options
  • Save EmperorPenguin18/a911ed91c858131e48807de577d70265 to your computer and use it in GitHub Desktop.
Save EmperorPenguin18/a911ed91c858131e48807de577d70265 to your computer and use it in GitHub Desktop.
Download MTG art automatically
for i in {1..38}
do
lynx -listonly -nonumbers -dump https://www.artofmtg.com/set/page/$i | grep /art/ | xargs -L1 -i{} lynx -listonly -dump -nonumbers -image_links {} | grep jpg | grep -v "100x100" | xargs -L1 -i{} wget -nc {}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment