#!/bin/bash #a simple directory scraping script using wget #if you're using OSX, google for "wget os x" or get it in my mac directory (http://072570c.om/macstuff) #change the obvious in the script. var0=0 LIMIT=302 while [ "$var0" -lt "$LIMIT" ] do wget http://nameofsite/directory/[imagename or filename]$var0.jpg let "var0 += 1" done echo exit 0