Tuesday, January 20, 2009

how to find a keyword within an entire project

Place the below mfind.bat within your path such as c:\windows\system32

usage:
mfind "String title"

====mfind.bat====
@echo off
for /f "tokens=*" %%a in ('dir /b /s *.java') do find %1 "%%a"

No comments:

Post a Comment