Skip to content

Instantly share code, notes, and snippets.

@dduan
Last active March 22, 2018 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dduan/e669d7fde71a30dd4d754647f56fb172 to your computer and use it in GitHub Desktop.
Save dduan/e669d7fde71a30dd4d754647f56fb172 to your computer and use it in GitHub Desktop.
Downloading "Simple Made Easy" slides.
#!/bin/sh
mkdir simple-made-easy
cd simple-made-easy
for i in `seq 1 39`
do
wget "https://res.infoq.com/presentations/Simple-Made-Easy/en/slides/sl$i.jpg"
done
for i in `seq 1 9`
do mv sl$i.jpg sl0$i.jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment