![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Windows & DOS: Issues & Discussions Questions involving Unix to Windows (Desktop or Server) go here. Any Windows/DOS questions should go here as well. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to find windows user without any password | RPG | Windows & DOS: Issues & Discussions | 0 | 09-05-2007 10:35 PM |
| system () howto ?? | britney | UNIX for Dummies Questions & Answers | 0 | 04-05-2006 09:36 PM |
| Grub can't find Windows XP | LeoSimon | UNIX for Dummies Questions & Answers | 2 | 12-08-2005 08:18 AM |
| howto | tamemi | UNIX for Dummies Questions & Answers | 6 | 09-18-2003 04:58 AM |
| How to find 1 day old file on Windows for Active Perl | lcfoo | Shell Programming and Scripting | 4 | 02-21-2003 09:37 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
windows howto find
Hi all!
How would you do the equivalent of find ! -type f..... under windows? Meaning, how under a directory could you find all files except those named *.mp3 for example? the command under linux would be: find $DIR ! -name "*.mp3" what would be that under windows? Thanx for any ideas... |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
set DIR=c:\what\ever
dir %DIR% /s /b | find "*.mp3" /v should work like your find gP |
|
#3
|
||||
|
||||
|
Quote:
Please note the "!" in the shell command |
|
#4
|
||||
|
||||
|
i've got it:
dir %DIR% /s /b | find ".mp3" /V without the * and a V instead of a v. thanx!!! |
||||
| Google The UNIX and Linux Forums |