DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦35b47dfd9⟧ TextFile

    Length: 492 (0x1ec)
    Types: TextFile
    Names: »texspell«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/textools/texspell« 

TextFile

#! /bin/csh
# shell for running texspell which is TeX and LaTeX's spell
# Author: Kamal Al-Yahya 1984

set flag = 

if ($#argv == 0) then
	echo "usage:  texspell [-w] file"
	exit (-1)
endif
switch ($argv[1])
	case -w:
		set flag = -w
		if ($#argv == 1) then
			echo "usage:  texspell [-w] file"
			exit (-1)
		endif
		shift argv
	endsw

while ($#argv > 0)
		if -e $argv[1] then
			detex $flag $argv[1] | spell
		else
			echo "Can't open $argv[1]"
			exit(-1)
		endif
		shift argv
end
exit(0)