Last active
March 22, 2018 19:19
-
-
Save dduan/e669d7fde71a30dd4d754647f56fb172 to your computer and use it in GitHub Desktop.
Downloading "Simple Made Easy" slides.
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/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