I have an alias in my .cshrc to combine multiple eps into a single pdf
Code:
alias me2p 'gs -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -sEPSCrop -sOutputFile=\!*'
so when I do
which takes all the eps I specific into a single pdf. This is great except I have to hit return in gs for every eps I include. i.e. lots of
>>showpage, press <return> to continue<<
Basically I just want me2p to generate the pdf without me having to confirm every eps. I've tried -dBATCH and -dNOPAUSE but they don't seem to help.
Any suggestions?