Re: epstopdf per intere cartelle

#19960
Up
0
Down
::

So già che la domanda è banalissima, ma non riesco a trovare la soluzione e quindi scusatemi…ma come si fa in linux (ubuntu) a far convertire intere cartelle dove all’interno ci sono file eps in pdf? Oppure far fare la conversione di + file?

ho provato in tutti i modi ma non mi riesce..

per un singolo file faccio epstopdf nomefile.eps e va tutto bene, se provo:

`oreste@oreste-desktop:~/Scrivania/immagini$ epstopdf
EPSTOPDF 2.9.5gw, 2006/01/29 – Copyright 1998-2006 by Sebastian Rahtz et al.
Syntax: epstopdf [options]
Options:
–help: print usage
–outfile=: write result to
–(no)filter: read standard input (default: false)
–(no)gs: run ghostscript (default: true)
–(no)compress: use compression (default: true)
–(no)hires: scan HiResBoundingBox (default: false)
–(no)exact: scan ExactBoundingBox (default: false)
–(no)debug: debug informations (default: false)
Examples for producing 'test.pdf':
* epstopdf test.eps
* produce postscript | epstopdf –filter >test.pdf
* produce postscript | epstopdf -f -d -o=test.pdf
Example: look for HiResBoundingBox and produce corrected PostScript:
* epstopdf -d –nogs -hires test.ps>testcorr.ps

!!! Error: Input filename missing!
oreste@oreste-desktop:~/Scrivania/immagini$
`

solita sinfonia se faccio epstopdf *.eps

Lapo in un post ha scritto che fa la conversione di intere cartelle…ma Lapo…Come si fa?

Con un comando di shell: devi passare a epstopdf un nome di file alla volta.
`for i in *.eps; do epstopdf $i; done`
Ciao
Enrico

Go to top