home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / eps2eps < prev    next >
Encoding:
Text File  |  2005-11-16  |  495 b   |  25 lines

  1. #!/bin/sh
  2. # $Id: eps2eps,v 1.5 2002/02/21 21:49:28 giles Exp $
  3. # "Distill" Encapsulated PostScript.
  4. gs="`dirname $0`/gs"
  5. if test ! -x "$gs"; then
  6.     gs=gs
  7. fi
  8.  
  9. OPTIONS="-dDEVICEWIDTH=250000 -dDEVICEHEIGHT=250000"
  10. while true
  11. do
  12.     case "$1" in
  13.     -*) OPTIONS="$OPTIONS $1" ;;
  14.     *)  break ;;
  15.     esac
  16.     shift
  17. done
  18.  
  19. if [ $# -ne 2 ]; then
  20.     echo "Usage: `basename $0` ...switches... input.eps output.eps" 1>&2
  21.     exit 1
  22. fi
  23.  
  24. exec "$gs" -q -sDEVICE=epswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH -dSAFER $OPTIONS "$1"
  25.