Soumen
Soumen

Reputation: 1036

Windows equivalent for Unix find command to search multiple file types

While having a cygwin installed in windows gives most of unix command, still i was wondering how to search multiple filetypes in one command using windows "find" command.
ie: find . -name *.cpp -o -name *.h -o -name *.java

The above command gives me a list of all cpp, h & java, what will be the equivalent using the windows find?

Upvotes: 70

Views: 88384

Answers (2)

JAB
JAB

Reputation: 21089

This will locate all files with the given extensions in the current working directory and all subdirectories:

dir *.cpp *.h *.java /b/s

See https://technet.microsoft.com/en-us/library/cc755121.aspx for more info on using dir.

Upvotes: 105

Sreedhar GS
Sreedhar GS

Reputation: 2788

findstr /p /s /i .

above command searches for the given text in current directories and sub directories. /n will print the line numbers too.

Upvotes: -3

Related Questions