X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6226396c4ac4980518d7a97203574501a4562090..38cef641a5d2f6506615f5b8e0c5bfea32ef62f6:/support/rrsync diff --git a/support/rrsync b/support/rrsync index e1ae6ec8..6e1a6eb8 100644 --- a/support/rrsync +++ b/support/rrsync @@ -74,6 +74,7 @@ our %long_opt = ( 'delete-during' => 0, 'delete-excluded' => 0, 'existing' => 0, + 'fake-super' => 0, 'files-from' => 3, 'force' => 0, 'from0' => 0, @@ -84,6 +85,7 @@ our %long_opt = ( 'inplace' => 0, 'link-dest' => 2, 'list-only' => 0, + 'log-file' => 3, 'log-format' => 1, 'max-delete' => 1, 'max-size' => 1, @@ -110,6 +112,7 @@ our %long_opt = ( 'super' => 0, 'temp-dir' => 2, 'timeout' => 1, + 'use-qsort' => 0, ); ### END of options data produced by the cull_options script. ### @@ -139,7 +142,7 @@ while ($command =~ /((?:[^\s\\]+|\\.[^\s\\]*)+)/g) { if ($_ eq '.') { $in_options = 0; } else { - next if /^-$short_no_arg+(e\d+\.\d+)?$/o || /^-$short_with_num\d+$/o; + next if /^-$short_no_arg+(e\d*\.\w*)?$/o || /^-$short_with_num\d+$/o; my($opt,$arg) = /^--([^=]+)(?:=(.*))?$/; my $disabled;