Skip to content

Instantly share code, notes, and snippets.

@impepc
Last active April 1, 2018 04:34
Show Gist options
  • Save impepc/bc8dc3ae84ceb7568806bf913f4a48b8 to your computer and use it in GitHub Desktop.
Save impepc/bc8dc3ae84ceb7568806bf913f4a48b8 to your computer and use it in GitHub Desktop.
grep like find batch
@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
IF "%2" == "" (SET PWD="%CD%") ELSE (SET PWD=%~2)
FOR /F "delims=" %%f in ('dir /A-D /S /B "%PWD%"') DO (
FINDSTR "%~1" "%%~f" > NUL
IF "!ERRORLEVEL!" == "0"
ECHO %%f
)
ENDLOCAL
@ECHO ON
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment