From: Masatake YAMATO Date: Sat, 12 Oct 2024 16:28:10 +0000 (+0900) Subject: cp,mv: align the descriptions of long options X-Git-Tag: v9.6~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03a7242fc6c8625c2e210f20b7ab2fa1042f9250;p=thirdparty%2Fcoreutils.git cp,mv: align the descriptions of long options * src/cp.c (usage): Adjust white spaces for --update. * src/mv.c (usage): Ditto. Fixes https://bugs.gnu.org/73772 --- diff --git a/src/cp.c b/src/cp.c index 1c4fd5c20c..127b5603fd 100644 --- a/src/cp.c +++ b/src/cp.c @@ -227,7 +227,7 @@ Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.\n\ -T, --no-target-directory treat DEST as a normal file\n\ "), stdout); fputs (_("\ - --update[=UPDATE] control which existing files are updated;\n\ + --update[=UPDATE] control which existing files are updated;\n\ UPDATE={all,none,none-fail,older(default)}\n\ -u equivalent to --update[=older]. See below\n\ "), stdout); diff --git a/src/mv.c b/src/mv.c index 806cb3a112..490c99c23b 100644 --- a/src/mv.c +++ b/src/mv.c @@ -294,7 +294,7 @@ If you specify more than one of -i, -f, -n, only the final one takes effect.\n\ -T, --no-target-directory treat DEST as a normal file\n\ "), stdout); fputs (_("\ - --update[=UPDATE] control which existing files are updated;\n\ + --update[=UPDATE] control which existing files are updated;\n\ UPDATE={all,none,none-fail,older(default)}\n\ -u equivalent to --update[=older]. See below\n\ "), stdout);