
 How to check tags in Series data.

egrep -h '^[	 ]*[^	 %]' */*.txt | sed -E -e 's/<.*>/<\*>/g' -e 's/[	 ]*$//g' -e 's/^[	 ]*//g' | sort | uniq -c


 How to check tags in Design data.

cat Design/*.txt | sed -E -f ./doc/design_check.sed | sort | uniq -c


 How to check the length of messages in Series data.

egrep -n '^[	 ]*[^	 %]' */*.txt | env LANG=c egrep '^[^:]+:[0-9]+:.{254,}'
egrep -n '^[	 ]*[^	 %]' */*.txt | sed -E -f ./doc/length_check.sed | env LANG=c egrep '^[^:]+:[0-9]+:[^<]*<.{254,}>'
egrep -n '^[	 ]*[^	 %]' */*.txt | egrep -i prompt | sed -E -f ./doc/length_check.sed | env LANG=c egrep -i '^[^:]+:[0-9]+:.*prompt[^<]+<.{45,}>'

[ End of File ]
