On Thu, Feb 05, 2004 at 11:04:54AM -0500, stan wrote:
> 
> OK, I think I understand. If I do then the follwing should do what I
> intended the original to do:
> 
> -- first set ---
> include "./[A-K]*"
> exclude "./[!A-K]*"
> 
> -- second set ---
> include "./[!A-K]*"
> 
> Or, do I need an exclude on the 2nd set?
> 

I think it is simpler than that.

 -- first set --
 include "./[A-K]*"

 -- second set --
 exclude "./[A-K]*"


With the include anything not matching is excluded automatically.
With the exclude, and no include, everything is included except
what is excluded.

-- 
Jon H. LaBadie                  [EMAIL PROTECTED]
 JG Computing
 4455 Province Line Road        (609) 252-0159
 Princeton, NJ  08540-4322      (609) 683-7220 (fax)

Reply via email to