| Subject: Re: a question concerning filters |
Author: Xavier Roche |
Date: 01/05/2004 17:49 |
| | > I want to exclude all files that are jpeg and starting
with
> 't' (e.g. thumbnails) ... i added this to the commandline
> -*t*.jpg
This will also exclude www.example.com/matt/foo.jpg
(because 'matt' contains a 't')
use instead:
-*/t*[file].jpg
If you want to capture all jpg files exept these ones:
+*.jpg -*/t*[file].jpg
| |
|
|
|
|
f
Created with FORUM 2.0.11