You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
249 B
11 lines
249 B
@echo off
|
|
setlocal
|
|
for /F "tokens=1-3 eol=;" %%I in (mk_gpd.txt) do call :doawk %%I %%J %%K
|
|
endlocal
|
|
goto :EOF
|
|
|
|
:doawk
|
|
echo awk -f mk_gpd.awk "%1" "%3" "kyp5jres.dll" %2 ^> %3
|
|
awk -f mk_gpd.awk "%1" "%3" "kyp5jres.dll" %2 > %3
|
|
goto :EOF
|
|
|