birbmap/docs/thesis/figures/convert.cmd

8 lines
91 B
Batchfile
Raw Normal View History

2020-11-26 12:15:43 +01:00
@echo off
for %%j in (*.eps) do (
echo converting file "%%j"
epstopdf "%%j"
)
echo done .