home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / cpp2tex.zip / C++2ltx.zip / C++2dvi next >
Text File  |  1997-01-28  |  193b  |  10 lines

  1. #!/bin/sh
  2. # shell script for transforming C/C++ file into a .dvi via C++2ltx
  3. if [ -s $1"" ]; 
  4.   then
  5.     C++2ltx $1 >$1.tex
  6.     latex $1.tex
  7.     rm $1.aux $1.log
  8.   else echo File $1 does not exist
  9.   fi
  10.