|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 492 (0x1ec) Types: TextFile Names: »texspell«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/textools/texspell«
#! /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)