If I do in XP command line:

dir d:\*mov*

I get a list of files contaning mov, move, Moving etc. How do I get the opposite, files not containing mov?

Thanks!

link|improve this question
feedback

migrated from serverfault.com Nov 19 '10 at 14:18

This question came from our site for system administrators and desktop support professionals.

2 Answers

up vote 1 down vote accepted

I see aking1012's response and I raise him...

dir d:\* /a-d | find /v /i "mov"

The restriction on the dir command hides directories and the /i parameter on the find ignores case.

link|improve this answer
good points +1... – aking1012 Nov 19 '10 at 15:48
feedback

this might do the trick:
dir d:\* | find /v mov

link|improve this answer
thanks for answering! – Hax Jun 30 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

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