I want to run a command on all files in a directory. For %%1 in (c\\conversion*.ajt) do convert command %%1 %%2 However I need to have an output filename the sa
Try this:
for %%i in (*.ajt) do "asciitojt.exe" "%%~i" "%%~ni.jt"
Start in the folder with the *.ajt files.