# $Id: spellcheck.mawk,v 1.2 2001/05/20 06:13:00 doug Exp $ # http://www.bagley.org/~doug/shootout/ BEGIN { delete ARGV; while (getline < "Usr.Dict.Words") { dict[$0] = 1; } } { if (!dict[$1]) { print $1 } }