plan9port/bin/spell

23 lines
331 B
Text
Raw Permalink Normal View History

#!/usr/local/plan9/bin/rc
2005-01-04 22:11:58 +00:00
2005-01-14 05:55:09 +00:00
. 9.rc
2005-01-04 22:11:58 +00:00
spellflags=()
deroffargs=()
fflag=''
for(x){
switch($x){
case -[abcvx]
spellflags=($spellflags $x)
case -f
fflag=$x
case *
if(~ $fflag -f) {
spellflags=($spellflags -f $x)
fflag=''
}
if not deroffargs=($deroffargs $x)
}
}
deroff -w $deroffargs | sort -u | sprog $spellflags