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.