星火微课系统客户端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ps2ps2 704B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. # $Id: ps2ps2 9344 2009-01-10 22:11:18Z till $
  3. # "Distill" PostScript with the Ghostscript 'ps2write' device
  4. # this generates a PDF-style stream with an attached
  5. # PostScript program to interpret it.
  6. # This definition is changed on install to match the
  7. # executable name set in the makefile
  8. GS_EXECUTABLE=gs
  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. if [ $# -ne 2 ]; then
  19. echo "Usage: `basename $0` [options] input.ps output.ps" 1>&2
  20. echo " e.g. `basename $0` -sPAPERSIZE=a4 input.ps output.ps" 1>&2
  21. exit 1
  22. fi
  23. exec $GS_EXECUTABLE -q -sDEVICE=ps2write -sstdout=%stderr "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1"