RetroArch/media/360/hd/rarch_audio_options.bat
2013-05-10 19:02:24 +02:00

15 lines
288 B
Batchfile

@echo off
for /f "tokens=* delims=" %%f in ('type rarch_main.xui') do CALL :DOREPLACE "%%f"
GOTO :EOF
:DOREPLACE
SET INPUT=%*
SET OUTPUT=%INPUT:RetroArchMain=RetroArchAudioOptions%
for /f "tokens=* delims=" %%g in ('ECHO %OUTPUT%') do ECHO %%~g>>rarch_audio_options.xui
EXIT /b
:EOF