home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / ghostscript-2.6.2-src.tgz / tar.out / fsf / ghostscript / pv.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-09-28  |  455b  |  23 lines

  1. #!/bin/sh -f
  2. #
  3. # pv - preview a specified page of a dvi file in a Ghostscript window
  4. # usage: pv page file
  5. #
  6. # pv converts the given page to PostScript and displays it
  7. # in a Ghostscript window.
  8. #
  9. if [ $# -lt 2 ] ;then
  10.   echo usage: $0 'page_number file_name[.dvi]'
  11.   exit 1
  12. fi
  13. RESOLUTION=100
  14. TEMPDIR=.
  15. PAGE=$1
  16. shift
  17. FILE=$1
  18. shift
  19. trap "rm -rf $TEMPDIR/$FILE.$$.pv" 0 1 2 15
  20. dvips -D$RESOLUTION -p $PAGE -n 1 $FILE $* -o $FILE.$$.pv
  21. gs $FILE.$$.pv
  22. exit 0
  23.