User:Scsbot/examples/checkrhymepagepunc

Hello, you have come here looking for the meaning of the word User:Scsbot/examples/checkrhymepagepunc. In DICTIOUS you will not only get to know all the dictionary meanings for the word User:Scsbot/examples/checkrhymepagepunc, but we will also tell you about its etymology, its characteristics and you will know how to say User:Scsbot/examples/checkrhymepagepunc in singular and plural. Everything you need to know about the word User:Scsbot/examples/checkrhymepagepunc you have here. The definition of the word User:Scsbot/examples/checkrhymepagepunc will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofUser:Scsbot/examples/checkrhymepagepunc, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
#!/bin/sh 

x=`egrep -n '^== *Pronunciation *==|»'`

if echo "$x" | grep -q 'hyme.*».*hyme.*».*hyme.*»'
then
	echo "already has breadcrumbs"
	exit 1
elif echo "$x" | grep -q '^1:== *Pronunciation *=='
then
	exit 0
else
	echo "Pronunciation line not first"
	exit 1
fi