Sh3ll



Directory :  /usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

Current File : //usr/bin/spell
#!/bin/sh

# aspell list mimicks the standard unix spell program, roughly.

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


Sh3LL