>
>
>
> > i'm trying to convert postscript files to pdf using batch commands
> (ms-
> > dos) and ghostscript. I can print it if I write the file name in this
> > manner:
>
> GSView is not Ghostscritp, I would start by using Ghostscritp
> (gswin32c.exe)
>
> > gsview32 "-sHP LaserJet 1300" c:\*-
1.ps
>
> > where * is a different name each time. However, these instructions
> > doesn't work. I think that gsview doesn't understand a random file
> > *-
1.ps. Is there a way to do what I want? Is it possible to convert
> > these .ps files to .pdf using batch command+ghostscript?
>
> Yes, but not like that. Use the Shell command 'for', eg:
>
> For %s in (*-
1.ps) do gswin32c -sDEVICE=pdfwrite ..... %s
Excuse me, I'm a beginner in postscript... :(
I'll try it tomorrow at work. Thank you very much, Ken!!!