From: Jim Meyering Date: Sat, 18 Sep 2021 16:27:27 +0000 (-0700) Subject: doc: drop extraneous single quotes in help X-Git-Tag: v9.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6fc52a828c0778ff5d7c5ad794c2b2216229e88;p=thirdparty%2Fcoreutils.git doc: drop extraneous single quotes in help * src/digest.c (usage) [cksum --help]: Drop single quotes around each checksum name. * src/tee.c (usage) [tee --help]: Likewise. --- diff --git a/src/digest.c b/src/digest.c index 122b75d8fc..2dfc87791c 100644 --- a/src/digest.c +++ b/src/digest.c @@ -504,17 +504,17 @@ The following five options are useful only when verifying checksums:\n\ fputs (_("\ \n\ DIGEST determines the digest algorithm and default output format:\n\ - 'sysv' (equivalent to sum -s)\n\ - 'bsd' (equivalent to sum -r)\n\ - 'crc' (equivalent to cksum)\n\ - 'md5' (equivalent to md5sum)\n\ - 'sha1' (equivalent to sha1sum)\n\ - 'sha224' (equivalent to sha224sum)\n\ - 'sha256' (equivalent to sha256sum)\n\ - 'sha384' (equivalent to sha384sum)\n\ - 'sha512' (equivalent to sha512sum)\n\ - 'blake2b' (equivalent to b2sum)\n\ - 'sm3' (only available through cksum)\n\ + sysv (equivalent to sum -s)\n\ + bsd (equivalent to sum -r)\n\ + crc (equivalent to cksum)\n\ + md5 (equivalent to md5sum)\n\ + sha1 (equivalent to sha1sum)\n\ + sha224 (equivalent to sha224sum)\n\ + sha256 (equivalent to sha256sum)\n\ + sha384 (equivalent to sha384sum)\n\ + sha512 (equivalent to sha512sum)\n\ + blake2b (equivalent to b2sum)\n\ + sm3 (only available through cksum)\n\ \n"), stdout); #endif #if !HASH_ALGO_SUM && !HASH_ALGO_CKSUM diff --git a/src/tee.c b/src/tee.c index c81faea91e..ef746ed2c0 100644 --- a/src/tee.c +++ b/src/tee.c @@ -100,10 +100,10 @@ Copy standard input to each FILE, and also to standard output.\n\ fputs (_("\ \n\ MODE determines behavior with write errors on the outputs:\n\ - 'warn' diagnose errors writing to any output\n\ - 'warn-nopipe' diagnose errors writing to any output not a pipe\n\ - 'exit' exit on error writing to any output\n\ - 'exit-nopipe' exit on error writing to any output not a pipe\n\ + warn diagnose errors writing to any output\n\ + warn-nopipe diagnose errors writing to any output not a pipe\n\ + exit exit on error writing to any output\n\ + exit-nopipe exit on error writing to any output not a pipe\n\ The default MODE for the -p option is 'warn-nopipe'.\n\ The default operation when --output-error is not specified, is to\n\ exit immediately on error writing to a pipe, and diagnose errors\n\