#!/bin/sh

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

cat "$@" | aspell spell --mode=none | sort -u

