Skip to content

Instantly share code, notes, and snippets.

@DoubleBrotherProgrammer
Created January 12, 2011 20:10
Show Gist options
  • Save DoubleBrotherProgrammer/776791 to your computer and use it in GitHub Desktop.
Save DoubleBrotherProgrammer/776791 to your computer and use it in GitHub Desktop.
Simple file search batch file for windows. Command line usage : fsearch {full filename that you're looking for}. EX : To search your entire C:\, drop this bat into C:\, drop to cmd, type "fsearch readme.txt"
@echo off
@echo.
@echo '%1'
@echo -------------------------------------------------------------------------------
@echo.
dir /s /b /o:g %1
@echo.
@echo -------------------------------------------------------------------------------
@echo.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment