2
I’m creating a Batch menuzinho to run a 1-line script that merges all text files into 1 only. But I don’t understand why the routine isn’t working.
Setup
Batch
Code
@echo off
:Menu
Echo.
Echo 1 - Combo Merger
Echo.
set /p op=Escolha uma op‡Æo:
GOTO:eof
Echo.
if /i "%op%" == "1"(
copy *.txt Combinados.txt
goto Menu
)
Thanks, it worked! D
– Sérgio Wilker
It’s done, my friend!
– Sérgio Wilker