[8829] in Athena Bugs
csh bug? cosmic ray?
daemon@ATHENA.MIT.EDU (mosquito@Athena.MIT.EDU)
Tue Jan 14 01:10:03 1992
From: mosquito@Athena.MIT.EDU
Date: Tue, 14 Jan 92 01:09:46 -0500
To: bugs@Athena.MIT.EDU
on vax architecture (yaz-pistachio.mit.edu)
The following csh script was being run:
#!/bin/csh
#
# Makes .ps files from all the .tex files in the directory
# using latex and dvi2ps
#
foreach file (*.tex)
latex $file
set base=$file:r
dvi2ps -r $base.dvi >! $base.ps
/bin/rm $base.dvi $base.aux $base.log
end
Most of the files worked fine. On the last one (lesson9) it died. Here's
an example of one that worked and the one that didn't:
This is TeX, C Version 3.0
(lesson8.tex
LaTeX Version 2.09 <4 Aug 1988>
Prepared for MIT Project Athena. (/usr/athena/lib/tex/macros/article.sty
Document Style `article' <16 Mar 88>.
(/usr/athena/lib/tex/macros/art10.sty))
No file lesson8.aux.
[1] (lesson8.aux) )
Output written on lesson8.dvi (1 page, 1820 bytes).
Transcript written on lesson8.log.
[/usr/athena/lib/tex/ps/dvi.ps][1]
This is TeX, C Version 3.0
(lesson9.tex
LaTeX Version 2.09 <4 Aug 1988>
Prepared for MIT Project Athena. (/usr/athena/lib/tex/macros/article.sty
Document Style `article' <16 Mar 88>.
(/usr/athena/lib/tex/macros/art10.sty))
No file lesson9.aux.
[1] (lesson9.aux) )
Output written on lesson9.dvi (1 page, 1460 bytes).
Transcript written on lesson9.log.
[/usr/athena/lib/tex/ps/dvi.ps][1]
e=lesson9: Command not found.
dvi2ps: can't find DVI file "lesson9.dvi"
rm: lesson9.dvi nonexistent
rm: lesson9.aux nonexistent
rm: lesson9.log nonexistent
end: Not in while/foreach.
\ /
--OO--
!! mosquito@athena
Kevin Iga