Script to Download All Squidfinger Patterns


SquidFinger Patterns are awesome, they are pint-sized, sharp and best of all free. But they are such a torment to download, so I mustered up a simple bash script to wget them all.

#!/bin/bash

for (( i = 0 ; i <= 9; i++ ))
do
     wget http://www.squidfingers.com/_patterns/files/pattern_00$i.gif
done
for (( i = 10 ; i <= 99; i++ ))
do
     wget http://www.squidfingers.com/_patterns/files/pattern_0$i.gif
done
for (( i = 100 ; i <= 158; i++ ))
do
     wget http://www.squidfingers.com/_patterns/files/pattern_$i.gif
done

Note: I did find this from a pastebin somewhere.

Related Posts

Test Your Chinese Using This Quiz

Using Sidekiq Iteration and Unique Jobs

Using Radicale with Gnome Calendar

Why I Regret Switching from Jekyll to Middleman for My Blog

Pick Random Item Based on Probability

Quickest Way to Incorporate in Ontario

Creating Chinese Study Decks

Generating Better Random Numbers

Image Magick Tricks

My Game Dev Process