Created
January 12, 2011 20:10
-
-
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"
This file contains 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 | |
@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