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

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

Unit Manager Code Snippet

Recommended Game Dev Reading

Healthbar Code Snippet