#!/bin/sh

while read group URL; do\
  wget -L -nv -m http://$URL; \
  ln -s $URL $group ;\
done <list.txt

exit 0
