From: David Dykstra Date: Thu, 16 Jan 2003 21:02:43 +0000 (+0000) Subject: Change rsync help for -a to show that it is equivalent to -rlptgoD. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/06891710f23069b405b81756790cf208ef6ab673 Change rsync help for -a to show that it is equivalent to -rlptgoD. I've had to go to the man page many times for that information and I finally got sick of it. --- diff --git a/options.c b/options.c index 5f6e2407..602bc52a 100644 --- a/options.c +++ b/options.c @@ -211,7 +211,7 @@ void usage(enum logcode F) rprintf(F," -v, --verbose increase verbosity\n"); rprintf(F," -q, --quiet decrease verbosity\n"); rprintf(F," -c, --checksum always checksum\n"); - rprintf(F," -a, --archive archive mode\n"); + rprintf(F," -a, --archive archive mode, equivalent to -rlptgoD\n"); rprintf(F," -r, --recursive recurse into directories\n"); rprintf(F," -R, --relative use relative path names\n"); rprintf(F," -b, --backup make backups (default %s suffix)\n",BACKUP_SUFFIX); diff --git a/rsync.yo b/rsync.yo index ea12114b..edbee0e8 100644 --- a/rsync.yo +++ b/rsync.yo @@ -285,7 +285,7 @@ verb( -v, --verbose increase verbosity -q, --quiet decrease verbosity -c, --checksum always checksum - -a, --archive archive mode + -a, --archive archive mode, equivalent to -rlptgoD -r, --recursive recurse into directories -R, --relative use relative path names -b, --backup make backups (default ~ suffix)