Extractable item handler rework.

This commit is contained in:
MobiusDev
2016-07-30 11:27:46 +00:00
parent 976a62f137
commit 10fad36e7c
7 changed files with 210 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
@echo off
title XML Search
cls
:search
set /p text="Enter search text: "
echo.
echo.search text "%text%" result:
findstr /I /N %text% *.xml
echo.
goto search