]> arthur.barton.de Git - bup.git/blobdiff - cmd/drecurse-cmd.py
Add --exclude-rx and --exclude-rx-from support to "bup drecurse".
[bup.git] / cmd / drecurse-cmd.py
index e52805549c5a32c5b0be89b1af902d46202642f6..cdf66803034bd0f429a869ea75b94ba06f29e25a 100755 (executable)
@@ -10,6 +10,8 @@ bup drecurse <path>
 x,xdev,one-file-system   don't cross filesystem boundaries
 exclude= a path to exclude from the backup (can be used more than once)
 exclude-from= a file that contains exclude paths (can be used more than once)
+exclude-rx= skip paths matching the unanchored regex (may be repeated)
+exclude-rx-from= skip --exclude-rx patterns in file (may be repeated)
 q,quiet  don't actually print filenames
 profile  run under the python profiler
 """
@@ -23,8 +25,10 @@ drecurse_top = extra[0]
 excluded_paths = parse_excludes(flags, o.fatal)
 if not drecurse_top.startswith('/'):
     excluded_paths = [relpath(x) for x in excluded_paths]
+exclude_rxs = parse_rx_excludes(flags, o.fatal)
 it = drecurse.recursive_dirlist([drecurse_top], opt.xdev,
-                                excluded_paths=excluded_paths)
+                                excluded_paths=excluded_paths,
+                                exclude_rxs=exclude_rxs)
 if opt.profile:
     import cProfile
     def do_it():