Last active
July 26, 2017 21:07
-
-
Save skyrepprac/2a4bd617ad6cff58dc21afa599256742 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal EnableDelayedExpansion | |
| set RESFILE="searchResult.txt" | |
| set /p NEEDLE="Enter the text you want to search: " | |
| set LB=^&echo. | |
| findstr /plnsc:"%NEEDLE%" *.php *.phtml *.xml *.css *.js *.sql *.html >> %RESFILE%.tmp | |
| move "%RESFILE%.tmp" "%RESFILE%" > nul | |
| exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment