Parameters: "%F" "%P" "%T"
Code: Select all
@echo off
if -%3==- echo First parameter must be filelist path, second and third - source and target path. && pause && goto :EOF
for /F "usebackq delims=" %%f in ("%~1") do (
"c:\program files\epstool\bin\epstool.exe" --copy --bbox "%~2%%f" "%~3%%f"
)
pause
cls