We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb36ff2 commit 71a0f57Copy full SHA for 71a0f57
gigasync
@@ -44,6 +44,8 @@ my $exclude_pattern;
44
my $verbose;
45
46
# DON'T INCLUDE ANY OPTIONS THAT INFER --recusive (like --archive)!
47
+# ALSO, THE SCRIPT WRITES THE FILES THAT WILL BE COPIES SO NO NEED TO
48
+# INCLUDE -v (VERBOSE) MODE.
49
50
my $rsync_options = '-lptgoD --no-implied-dirs --log-format="%t %f (%l bytes)" ';
51
$rsync_options .= $ENV{RSYNC_OPTIONS} if $ENV{RSYNC_OPTIONS};
@@ -111,6 +113,7 @@ sub do {
111
113
my $rel_file = $File::Find::name;
112
114
$rel_file =~ s:^\Q$src_dir/::;
115
print $OUT $rel_file . "\n";
116
+ print "$rel_file\n";
117
if ($st->size + $batchsize >= $run_size) {
118
run_rsync();
119
new_srclist();
0 commit comments