home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / gs / gs650w32.exe / gs6.50 / lib / dvipdf < prev    next >
Text File  |  2000-12-05  |  789b  |  40 lines

  1. #!/bin/sh
  2. # $Id: dvipdf,v 1.1 2000/03/09 08:40:39 lpd Exp $
  3. # Convert DVI to PDF.
  4. #
  5. # Please contact Andrew Ford <A.Ford@ford-mason.co.uk> with any questions
  6. # about this file.
  7. #
  8. # Based on ps2pdf
  9.  
  10. OPTIONS=""
  11. while true
  12. do
  13.     case "$1" in
  14.     -*) OPTIONS="$OPTIONS $1" ;;
  15.     *)  break ;;
  16.     esac
  17.     shift
  18. done
  19.  
  20. if [ $# -lt 1 -o $# -gt 2 ]; then
  21.     echo "Usage: `basename $0` [options...] input.dvi [output.pdf]" 1>&2
  22.     exit 1
  23. fi
  24.  
  25. infile=$1;
  26.  
  27. if [ $# -eq 1 ]
  28. then
  29.     case "${infile}" in
  30.       *.dvi)    base=`basename ${infile} .dvi` ;;
  31.       *)        base=`basename ${infile}` ;;
  32.     esac
  33.     outfile=${base}.pdf
  34. else
  35.     outfile=$2
  36. fi
  37.  
  38. # Doing an initial 'save' helps keep fonts from being flushed between pages.
  39. exec dvips -q -f $infile | gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$outfile $OPTIONS -c save pop -
  40.