From: Jim Meyering Date: Thu, 10 Aug 2017 14:42:56 +0000 (-0700) Subject: doc: correct technicality in chroot's --help output X-Git-Tag: v8.28~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9bf4361f4d9045a1fef8eb79668728ed5fd44edf;p=thirdparty%2Fcoreutils.git doc: correct technicality in chroot's --help output * src/chroot.c (usage): Use correct quoting in descriptive diagnostic. We would run `"$SHELL" -i`, not `${SHELL} -i`. --- diff --git a/src/chroot.c b/src/chroot.c index 885048f1ef..b8b72586da 100644 --- a/src/chroot.c +++ b/src/chroot.c @@ -207,7 +207,7 @@ Run COMMAND with root directory set to NEWROOT.\n\ fputs (VERSION_OPTION_DESCRIPTION, stdout); fputs (_("\ \n\ -If no command is given, run '${SHELL} -i' (default: '/bin/sh -i').\n\ +If no command is given, run '"$SHELL" -i' (default: '/bin/sh -i').\n\ "), stdout); emit_ancillary_info (PROGRAM_NAME); }