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.
7 lines
257 B
7 lines
257 B
#!/bin/sh
|
|
# Convert PostScript to PDF 1.3 (Acrobat 4-and-later compatible).
|
|
ps2pdfwr="`dirname \"$0\"`/ps2pdfwr"
|
|
if test ! -x "$ps2pdfwr"; then
|
|
ps2pdfwr="ps2pdfwr"
|
|
fi
|
|
exec "$ps2pdfwr" -dCompatibilityLevel=1.3 -dWriteXRefStm=false -dWriteObjStms=false "$@"
|