home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / bin / ps2ps < prev    next >
Encoding:
Text File  |  2006-11-28  |  555 b   |  26 lines

  1. #!/bin/sh
  2. # $Id: ps2ps 6300 2005-12-28 19:56:24Z giles $
  3. # "Distill" PostScript.
  4.  
  5. # This definition is changed on install to match the
  6. # executable name set in the makefile
  7. GS_EXECUTABLE=gs
  8.  
  9. OPTIONS="-dSAFER"
  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` [options] input.ps output.ps" 1>&2
  21.     echo "  e.g. `basename $0` -sPAPERSIZE=a4 input.ps output.ps" 1>&2
  22.     exit 1
  23. fi
  24.  
  25. exec $GS_EXECUTABLE -q -sDEVICE=pswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1"
  26.