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
|
|
|