#!/bin/sh
#sum word to test with butt not allll offf theeese
tr="/usr/bin/tr"
cat $1 | $tr -cs  'A-Za-z' '\012' | sort | uniq | comm -23 - /usr/dict/words
