#!/bin/sh ############################################################################################################### #@(#)aspell -l mimicks the standard unix spell(1) program, roughly. (John S. Urban) ############################################################################################################### # old aspell #cat "$@" | aspell -l --mode=none | sort -u ############################################################################################################### cat "$@" | aspell --mode=none list | sort -u ############################################################################################################### exit