On May  1, 2001, "Hanno 'Rince' Wagner" <[EMAIL PROTECTED]> wrote:

> I would like to use RegEx within the disklist and say one SaveSet is
> /path/to/save/[0-b] next one is /path/to/save/[c-n] and
> /path/to/save/[o-z] or something similar. Is this possible?

Yes.  The trick is to use:

hostname /path/to/save {
  theDumptype
  exclude "./[^0-b]" # backup up only files starting with 0-b
}
hostname /path/to/save/. { # note the trailing dot
  theDumptype
  exclude "./[^c-n]"
}
hostname /path/to/save/./. { # note the trailing dots
  theDumptype
  exclude "./[^o-z]"
}

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

Reply via email to