#!/bin/sh -e 

PREFIX=http://ns2345k.web.sigma2.no/people/timhermans/

rm -f wget.sh 
for ITEM in `ls *.nc | sort `
do 
  echo "wget -c ${PREFIX}$ITEM" >> wget.sh
done

