gibney.org : Technology : PDF Files : Compress PDF Files : Compress multimple PDF files : convert.bat


just a logo :)

search:


See as: raw | code

terms of service | imprint

gibney.org
is powered by m1d1





convert.bat
(Entry Nr. 283, by user 1 | edit)
@echo off

set PDFVER=13

if NOT "%1"=="" (
set PDFVER=%1
)

echo Converting *.ps to *.pdf
echo using pstopdf_%PDFVER%

IF NOT EXIST pstopdf_%PDFVER%.bat GOTO Error

for %%f in ("*.ps") Do (

echo *******************************************************
echo %%f
CALL pstopdf_%PDFVER%.bat %%f
)
GOTO End


:Error
echo pstopdf_%PDFVER% was not found.
GOTO End

:End
Create a new entry at this position