<br><div><span class="gmail_quote">On 3/30/07, <b class="gmail_sendername">Charles Jones</b> <<a href="mailto:jonescr@cisco.com">jonescr@cisco.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Gary Baluha wrote:<br>> DEFAULT<br>>    <other non-related DISK IGNORE rules><br>>    DISK    %^/archive[0-9]* IGNORE<br>>    DISK    * 90 95<br>><br>> I know technically the "DISK *" should probably be "DISK .*", but I
<br>> thought that's how it was by default.<br>> Am I just wrong with my PCRE?<br><br>Try this:<br>DISK   %^\/archive[0-9]   IGNORE<br><br>Note that will also ignore things like /archive10, /archive30, etc. so<br>
if you want to ONLY ignore 0-9, you need to use this (assuming paths<br>like /archiveXX):<br>DISK   %^\/archive[0-9]$   IGNORE</blockquote><div><br>Yup, I want to ignore anything /archiveN...N<br> </div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
P.S. Your main problem was not escaping the /</blockquote><div><br>I thought for sure I had stuff working correctly without \/, but I'll give it a try and see if that helps.  Maybe these were never working right in the first place and I just never noticed.
<br></div><br></div><br>