Re: ? How to convert more than one .eps file into .pdf ?
[email protected] (Hal Canary)
| Newsgroups | gmane.comp.printing.ghostscript.bugs |
|---|---|
| Organization | http://groups.google.com/ |
| Message-ID | <[email protected]> |
"Yi-Zen Chu; Yiren Qu" <""y i z e n \"@u c l i n k 4.b e r k e l e y.e d u> wrote in message news:<TY2Y8.501028$352.82983@sccrnsc02>... > Hello > > Not sure if this is the correct forum. > > I would like to find out how to convert more than one eps file into pdf > at the same time. In UNIX I type ps2pdf *.eps but that does not do it at > all. I hope I don't need to type in the file name of every file, because > I have quite a few. > > Thanks for the help! > > Yi-Zen from the bash shell: $ for x in *.eps ; do ps2pdf $x ; done