PowerShell
Public
Find Text in Files
Search for a word or phrase inside files recursively.
#powershell
#search
#files
#todo
PowerShell
Select-String -Path "*.php" -Pattern "TODO" -Recurse |
Select-Object Path, LineNumber, Line
Notes
Change *.php to another pattern such as *.js or *.css.