!/bin/bash
##ubuntu 12.04 download script (note this is development release)
#note iso size is more than 700mb so will not fit on normal cd-r
#download ubuntu iso file
wget -c http://cdimage.ubuntu.com/daily-live/current/precise-desktop-i386.iso
#download md5 hash
wget -c http://cdimage.ubuntu.com/daily-live/current/MD5SUMS
#check iso against md5hash
md5sum -c MD5SUMS


