The script 'spell' which is included in both RH 6.0 and RH 5.0 only works if the file is fed in to the stdin. The following does a much better job of emulating Unix spell: ------- #!/bin/sh # ispell -l mimicks the standard unix spell program, roughly. cat $*| ispell -l | sort -u -------
*** This bug has been marked as a duplicate of 6099 ***