README.md in redis-copy-0.0.3 vs README.md in redis-copy-0.0.5

- old
+ new

@@ -19,26 +19,27 @@ The current options can be grabbed using the `--help` flag. ``` $ redis-copy --help -redis-copy v0.0.2 +redis-copy v0.0.5 Usage: redis-copy [options] <source> <destination> <source> and <destination> must be redis connection uris like [redis://]<hostname>[:<port>][/<db>] Specific options: --strategy STRATEGY Select strategy (auto, new, classic) (default auto) auto: uses new if available, otherwise fallback new: use redis DUMP and RESTORE commands (faster) classic: migrates via multiple type-specific commands + --[no-]pipeline Use redis pipeline where available (default true) + -d, --[no-]debug Write debug output (default false) + -t, --[no-]trace Enable backtrace on failure (default false) + -f, --[no-]fail-fast Abort on first failure (default false) + --[no-]verify [PERCENT] Verify percentage of transfers -- VERY SLOW (default 0) + --[no-]prompt Prompt for confirmation (default true) + --[no-]allow-nonempty Allow non-empty destination (default false) --[no-]dry-run Output configuration and exit - -d, --[no-]debug Write debug output - -t, --[no-]trace Enable backtrace on failure - -f, --[no-]fail-fast Abort on first failure - -y, --yes Automatically accept any prompts - --[no-]allow-nonempty Allow non-empty destination - ``` ## Example: ```