- Handle a dot-dir-containing flist using its parent_ndx value.
[rsync.git] / support / files-to-excludes
blob5fb13b088d97d1a1b78cda2ca16b5d5c9ab08704
1 #!/usr/bin/perl
2 # This script takes an input of filenames and outputs a set of
3 # include/exclude directives that can be used by rsync to copy
4 # just the indicated files using an --exclude-from=FILE option.
5 use strict;
7 my %hash;
9 while (<>) {
10 chomp;
11 s#^/+##;
12 my $path = '/';
13 while (m#([^/]+/)/*#g) {
14 $path .= $1;
15 print "+ $path\n" unless $hash{$path}++;
17 if (m#([^/]+)$#) {
18 print "+ $path$1\n";
19 } else {
20 delete $hash{$path};
24 foreach (sort keys %hash) {
25 print "- $_*\n";
27 print "- /*\n";