Are there any utility find commands that you can download and use in DOS which match the UNIX find command?
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.
|
Odd, odd, odd question - but THIS seems to be only a few keys away from google | |||
|
feedback
|
|
You can use: | |||||||
feedback
|
|
Cygwin will provide you a fairly featured *nix environment in Windows. | |||
|
feedback
|
|
Two ways:
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. | |||
|
feedback
|