/usr/share/doc/rsync/support
NameSizeModeActions
atomic-rsync51900644editdlrm
cvs2includes12160644editdlrm
deny-rsync10050644editdlrm
file-attr-restore49360644editdlrm
files-to-excludes5380644editdlrm
git-set-file-times39020644editdlrm
instant-rsyncd27910644editdlrm
logfilter11040644editdlrm
lsh31020644editdlrm
lsh.sh11080644editdlrm
Makefile800644editdlrm
mapfrom6330644editdlrm
mapto6250644editdlrm
mnt-excl18480644editdlrm
munge-symlinks26170644editdlrm
nameconvert15270644editdlrm
rrsync126170644editdlrm
rrsync.1.md43830644editdlrm
rsync-no-vanished5930644editdlrm
rsync-slash-strip7690644editdlrm
rsyncstats86910644editdlrm
savetransfer.c45600644editdlrm
Edit: /usr/share/doc/rsync/support/files-to-excludes (538B)
#!/usr/bin/env perl # This script takes an input of filenames and outputs a set of # include/exclude directives that can be used by rsync to copy # just the indicated files using an --exclude-from=FILE option. use strict; my %hash; while (<>) { chomp; s#^/+##; my $path = '/'; while (m#([^/]+/)/*#g) { $path .= $1; print "+ $path\n" unless $hash{$path}++; } if (m#([^/]+)$#) { print "+ $path$1\n"; } else { delete $hash{$path}; } } foreach (sort keys %hash) { print "- $_*\n"; } print "- /*\n";