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