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

  1. #!/bin/sh
  2. # $Id: pdfopt,v 1.2 2000/05/30 05:28:22 lpd Exp $
  3. # Convert PDF to "optimized" form.
  4.  
  5. OPTIONS=""
  6. while true
  7. do
  8.     case "$1" in
  9.     -*) OPTIONS="$OPTIONS $1" ;;
  10.     *)  break ;;
  11.     esac
  12.     shift
  13. done
  14.  
  15. if [ $# -ne 2 ]; then
  16.     echo "Usage: `basename $0` input.pdf output.pdf" 1>&2
  17.     exit 1
  18. fi
  19.  
  20. exec gs -q -dNODISPLAY -dSAFER $OPTIONS -- pdfopt.ps $1 $2
  21.