gv 256 B

1234567891011
  1. #!/bin/sh
  2. #Panzerkopf: Using a temporary file instead of pipe.
  3. [ ! $1 ] && exit
  4. ps2pdf "$@" /tmp/$$.pdf
  5. #ps2pdf -sPAPERSIZE=a4 "$@" /tmp/$$.pdf #charlie6, comment above and uncomment this line if paper size is A4
  6. epdfview /tmp/$$.pdf
  7. rm -f /tmp/$$.pdf