data=/usr/lib/diction/suggest.d

if [ $# -gt 0 ]; then
	grep "$*.*->" $data
else
	while   echo -n "phrase?  "
		read phrase
		if [ $? != 0 ]; then
			echo
			exit
		fi
		[ "$phrase" ]
	do
		grep "$phrase.*->" $data
	done
fi
