Although having cygwin installed on Windows gives most of the unix command, I was still wondering how to search for multiple file types in a single command using the Windows find command.
i.e.: find . -name *.cpp -o -name *.h -o -name *.java find . -name *.cpp -o -name *.h -o -name *.java
The above command gives me a list of all cpp, h and java, what would be equivalent using find windows?
command-line windows unix find ls
Soumen Jun 08 2018-11-11T00: 00Z
source share