<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">On 09/11/12 10:21, Mike Burger wrote:<br>
    </div>
    <blockquote
      cite="mid:D1425FA7-8927-44EC-B3C0-8DA818ADB336@FreedomMortgage.com"
      type="cite">On Nov 8, 2012, at 5:24 PM, "Tim McCloskey" <<a
        moz-do-not-send="true" href="mailto:tm@freedom.com">tm@freedom.com</a>>
      wrote:<br>
      <div><br>
      </div>
      <blockquote type="cite">
        <div>
          <style>
<!--
@font-face
        {font-family:"Cambria Math"}
@font-face
        {font-family:Calibri}
@font-face
        {font-family:Tahoma}
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif"}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline}
a:visited, span.MsoHyperlinkFollowed
        {color:purple;
        text-decoration:underline}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:8.0pt;
        font-family:"Tahoma","sans-serif"}
span.EmailStyle17
        {font-family:"Calibri","sans-serif";
        color:windowtext}
span.BalloonTextChar
        {font-family:"Tahoma","sans-serif"}
@page WordSection1
        {margin:1.0in 1.0in 1.0in 1.0in}
-->
</style>
          <div style="direction: ltr;font-family: Tahoma;color:
            #000000;font-size: 10pt;">
            <div>HOST=edmprod</div>
            <div>        DISK    %^/(da[0-2][0-7]|someotherpattern)
              IGNORE </div>
            <div>        DISK    * 95 98</div>
          </div>
        </div>
      </blockquote>
    </blockquote>
    <br>
    I don't think that would work, you would need something like:<br>
    <div style="direction: ltr;font-family: Tahoma;color:
      #000000;font-size: 10pt;">
      <div>HOST=edmprod</div>
      <div>        DISK    %^/(da[0-1][0-9]|da2[0-7]) IGNORE </div>
      <div>        DISK    * 95 98</div>
    </div>
    <br>
    I'm not sure about the IGNORE or the 101 102 methods...<br>
    <br>
    Also....<br>
    <blockquote
      cite="mid:D1425FA7-8927-44EC-B3C0-8DA818ADB336@FreedomMortgage.com"
      type="cite">
      <blockquote type="cite">
        <div>
          <div style="direction: ltr;font-family: Tahoma;color:
            #000000;font-size: 10pt;">
            <div style="font-family: Times New Roman; color: #000000;
              font-size: 16px">
              <div id="divRpF1707" style="direction: ltr; "> <br>
              </div>
              <div>
                <div class="WordSection1">
                  <p class="MsoNormal">The hostname of the system is
                    “edmprod” and the filesystems are /da01 thru /da27.</p>
                  <p class="MsoNormal"> </p>
                  <p class="MsoNormal">The stanza I’ve tried to use is:</p>
                  <p class="MsoNormal"> </p>
                         DISK %^\/da* IGNORE<br>
                </div>
              </div>
            </div>
          </div>
        </div>
      </blockquote>
    </blockquote>
    I think this would need to be:<br>
           DISK %^\/da.* IGNORE<br>
    <br>
    Otherwise, you are matching 0 or more of the letter a, while you
    really want 1 or more of any character (well, really digit)<br>
           DISK %^\/da[0-9]+ IGNORE<br>
    <br>
    PS, all the above is untested, and just based on normal regular
    expressions, plus any possible typo etc...<br>
    <br>
    Regards,<br>
    Adam<br>
    <pre class="moz-signature" cols="72">-- 
Adam Goryachev
Website Managers
<a class="moz-txt-link-abbreviated" href="http://www.websitemanagers.com.au">www.websitemanagers.com.au</a>
</pre>
  </body>
</html>