Skip to content

Instantly share code, notes, and snippets.

@skyrepprac
Last active July 26, 2017 21:07
Show Gist options
  • Select an option

  • Save skyrepprac/2a4bd617ad6cff58dc21afa599256742 to your computer and use it in GitHub Desktop.

Select an option

Save skyrepprac/2a4bd617ad6cff58dc21afa599256742 to your computer and use it in GitHub Desktop.
@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