Are there any utility find commands that you can download and use in DOS which match the UNIX find command?

link|improve this question
1  
Thou shall google for "gnu find windows". – Zoredache Mar 22 '11 at 19:19
@Zord - great minds – Chopper3 Mar 22 '11 at 19:22
feedback

closed as off topic by Zoredache, Scott Pack, Iain, Tom O'Connor, Ben Pilbrow Mar 22 '11 at 20:24

Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.

4 Answers

Odd, odd, odd question - but THIS seems to be only a few keys away from google

link|improve this answer
feedback

You can use: dir ipconfig.* /s/p

link|improve this answer
Let me type that very command into a unix prompt - oops! – Chopper3 Mar 22 '11 at 19:18
You may not have the proper alias. :P – Mircea Vutcovici Mar 22 '11 at 19:34
When providing answers to questions you should not include anything that relies on an alias, as there is no reason to expect the same alias to exist on the other person's machine. – John Gardeniers Mar 22 '11 at 21:01
feedback

Cygwin will provide you a fairly featured *nix environment in Windows.

http://www.cygwin.com/

link|improve this answer
feedback

Two ways:

dir *test* /s/b
dir /s/b | findstr /i "test"

If you use findstr, you can use /i for case insensitive, /v lines that do not, /b match at beginning of line, /e match at end of line. So findstr is similar to grep. Also, dir /s/b/ad will only return directories while dir /s/b/a-d will only return files. dir /? and findstr /? will show the complete help.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.