1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-29 03:50:45 +02:00

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`.
This commit is contained in:
Jim Meyering
2017-08-10 07:42:56 -07:00
parent 8e2929a29b
commit 9bf4361f4d
+1 -1
View File
@@ -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);
}