home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2002 February / INTERNET88.ISO / pc / software / windows / bits / pdf995 / data1.cab / Program_Executable_Files / res / ps2ps < prev    next >
Encoding:
Text File  |  2001-12-08  |  383 b   |  21 lines

  1. #!/bin/sh
  2. # $RCSfile: ps2ps,v $ $Revision: 1.2.2.1 $
  3. # "Distill" PostScript.
  4.  
  5. OPTIONS="-dSAFER"
  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` ...switches... input.ps output.ps" 1>&2
  17.     exit 1
  18. fi
  19.  
  20. exec gs -q -sDEVICE=pswrite -sOutputFile=$2 -dNOPAUSE -dBATCH $OPTIONS $1
  21.