星火微课系统客户端
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/bin/sh -f
  2. # $Id: pv.sh 8104 2007-07-05 10:41:52Z till $
  3. #
  4. # pv - preview a specified page of a dvi file in a Ghostscript window
  5. # usage: pv page file
  6. #
  7. # pv converts the given page to PostScript and displays it
  8. # in a Ghostscript window.
  9. #
  10. if [ $# -lt 2 ] ;then
  11. echo usage: $0 'page_number file_name[.dvi]'
  12. exit 1
  13. fi
  14. #
  15. # The following line used to appear here:
  16. #
  17. #RESOLUTION=100
  18. #
  19. # But according to Peter Dyballa
  20. # <pete@lovelace.informatik.uni-frankfurt.de>, "Modern versions of dvips are
  21. # taught to read configuration files which tell them the paths to PK, TFM,
  22. # VF and other files for example PostScript font programmes. These files
  23. # tell #dvips too which default resolution is used and therefore which
  24. # series of PK files (based on 300 DPI or 400 DPI or 600 DPI or even more)
  25. # are held on the system." So we have deleted this line, and also removed
  26. # the -D switch from the call of dvips below.
  27. #
  28. # This definition is changed on install to match the
  29. # executable name set in the makefile
  30. GS_EXECUTABLE=gs
  31. TEMPDIR=.
  32. PAGE=$1
  33. shift
  34. FILE="$1"
  35. shift
  36. if test -z "$TEMPDIR"; then
  37. TEMPDIR=/tmp
  38. fi
  39. if which mktemp >/dev/null 2>/dev/null; then
  40. tmpfile="`mktemp $TEMPDIR/\"$FILE\".pv.XXXXXX`"
  41. else
  42. tmpfile="$TEMPDIR/$FILE.$$.pv"
  43. fi
  44. trap "rm -rf $tmpfile" 0 1 2 15
  45. #dvips -D$RESOLUTION -p $PAGE -n 1 "$FILE" "$@" -o $tmpfile
  46. dvips -p $PAGE -n 1 "$FILE" "$@" -o $tmpfile
  47. $GS_EXECUTABLE $tmpfile
  48. exit 0