10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @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 | 
