#!/bin/sh

#
#	Read dgdm.spec file and get the part number
#
while read key val
do
	case "$key" in
	"#DigiPart":) part=$val;;
	esac
done
echo "$part"
