#!/bin/bash
i=0
while [ $i -lt 4 ];do 
 wget -c http://avaom.com/file$i.zip;
 let i=i+1
 done
