Batch
Public
Find Text in Files
A Windows CMD command that searches for text inside files.
#cmd
#windows
#search
#files
Batch
@echo off
findstr /s /i /n "TODO" *.php
pause
Notes
The /s flag searches subfolders, /i ignores case, and /n shows line numbers.