#!/bin/sh
find platform intro \
	-path intro/yref -prune -o \
	-path platform/yref -prune -o \
	-type f -name '*.xml' -print \
| while read file
do
  echo aspell -H -c "${file}"
done
