#!/bin/sh

# ispell -l mimicks the standard unix spell program, roughly.

cat "$@" | ispell -l | sort -u
