#!/bin/sh i=1; while [ $i -lt 352 ]; do echo wget -N ftp://data.massgis.state.ma.us/pub/shape/parcels/par$i.exe i=`expr $i + 1` done