#!/bin/bash

c=1
while [ $c -lt 64 ] ; do
        link="http://mensite.pl/wp-content/uploads/2009/04/fight-club-00${c}.jpg"
        if [ $c -gt 9 ] ; then
                link="http://mensite.pl/wp-content/uploads/2009/04/fight-club-0${c}.jpg"
        fi
        wget $link
        ((c++))
done

Add a code snippet to your website: www.paste.org