Man page - bup-drecurse(1)
Packages contains this manual
- bup-meta(1)
- bup-save(1)
- bup-init(1)
- bup-index(1)
- bup-import-duplicity(1)
- bup-gc(1)
- bup-config(5)
- bup-bloom(1)
- bup-join(1)
- bup-midx(1)
- bup-daemon(1)
- bup-rm(1)
- bup-tag(1)
- bup-cat-file(1)
- bup-get(1)
- bup-validate-ref-links(1)
- bup-ftp(1)
- bup-web(1)
- bup-split(1)
- bup-help(1)
- bup-prune-older(1)
- bup-fuse(1)
- bup-ls(1)
- bup-margin(1)
- bup-memtest(1)
- bup-damage(1)
- bup-import-rsnapshot(1)
- bup-server(1)
- bup-fsck(1)
- bup(1)
- bup-on(1)
- bup-random(1)
- bup-drecurse(1)
- bup-features(1)
- bup-restore(1)
- bup-tick(1)
- bup-validate-object-links(1)
- bup-mux(1)
- bup-import-rdiff-backup(1)
apt-get install bup-doc
Manual
bup-drecurse
NAMESYNOPSIS
DESCRIPTION
OPTIONS
EXAMPLES
SEE ALSO
BUP
AUTHORS
NAME
bup-drecurse - recursively list files in your filesystem
SYNOPSIS
bup drecurse [-x] [-q] [--exclude path ] [--exclude-from filename ] [--exclude-rx pattern ] [--exclude-rx-from filename ] [--profile] <path>
DESCRIPTION
bup drecurse traverses files in the filesystem in a way similar to find(1). In most cases, you should use find(1) instead.
This program is useful mainly for testing the file traversal algorithm used in bup-index(1).
Note that filenames are returned in reverse alphabetical order, as in bup-index(1). This is important because you can’t generate the hash of a parent directory until you have generated the hashes of all its children. When listing files in reverse order, the parent directory will come after its children, making this easy.
OPTIONS
-x, --xdev, --one-file-system
don’t cross filesystem boundaries – though as with tar and rsync, the mount points themselves will still be reported.
-q, --quiet
don’t print filenames as they are encountered. Useful when testing performance of the traversal algorithms.
--exclude= path
exclude path from the backup (may be repeated).
--exclude-from= filename
read –exclude paths from filename , one path per-line (may be repeated). Ignore completely empty lines.
--exclude-rx= pattern
exclude any path matching pattern . See bup-index(1) for details, but note that unlike index, drecurse will produce relative paths if the drecurse target is a relative path. (may be repeated).
--exclude-rx-from= filename
read –exclude-rx patterns from filename , one pattern per-line (may be repeated). Ignore completely empty lines.
--profile
print profiling information upon completion. Useful when testing performance of the traversal algorithms.
EXAMPLES
bup drecurse -x /
SEE ALSO
bup-index(1)
BUP
Part of the bup(1) suite.
AUTHORS
Avery Pennarun apenwarr@gmail.com