cat check | while read sum ipk ;do 
	nsum=`md5sum $ipk 2>/dev/null | cut -d' ' -f1`
	if [[ $sum != $nsum ]]; then
		echo :$sum:$nsum:$ipk:
	fi
done

