#!/bin/sh
cd /tmp
cat /tmp/LIST | while read url name; do 
	wget $url 
	dpkg -i $name
	rm $name
done
