On 7/29/05, Bruce Dubbs <[EMAIL PROTECTED]> wrote:
> Just for grins, I did:
> 
> find -name \*.xml -exec cat {} \; | ispell -H -l|sort|uniq
> 
> Do you think we might have a specialized vocabulary?  :)
> 
> It's not hard to find the problem words.  Just do:
> 
> grep -r "misspel" *
> 
> It's taking a while to fix the spelling errors.  I've gone through the
> b's, but if someone wants to do some more, let me know.
> 

I used the following to go thru each file:
   for i in $(find -name "*.xml" | sort)
   do
       echo "File: $i"
       cat $i | aspell -H -l | sort | uniq
       echo
       read
   done

Fixed the ones I could identify, skipped the ones that were in British English.

-- 
Tushar Teredesai
   mailto:[EMAIL PROTECTED]
   http://www.linuxfromscratch.org/~tushar/
--
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to