4 lines
129 B
Plaintext
4 lines
129 B
Plaintext
|
#!/bin/sh
|
||
|
outputfile=$1 && shift
|
||
|
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sOutputFile=${outputfile} $@
|