You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
272 B

1 month ago
  1. #!/bin/sh
  2. # Convert PostScript to PDF.
  3. # Currently, we produce PDF 1.4 by default, but this is not guaranteed
  4. # not to change in the future.
  5. version=14
  6. ps2pdf="`dirname \"$0\"`/ps2pdf$version"
  7. if test ! -x "$ps2pdf"; then
  8. ps2pdf="ps2pdf$version"
  9. fi
  10. exec "$ps2pdf" "$@"