svn commit: r363544 - stable/12/bin/sh
Mateusz Piotrowski
0mp at FreeBSD.org
Sun Jul 26 09:47:02 UTC 2020
Author: 0mp (doc,ports committer)
Date: Sun Jul 26 09:47:01 2020
New Revision: 363544
URL: https://svnweb.freebsd.org/changeset/base/363544
Log:
MFC 362957:
Fix description of the "\$" sequence for PS1
The manual page documents "\$" to expand to either "$" or "#" followed by
a single space. In reality, the single space character is not appended.
PR: 247791
Submitted by: kd-dev at pm.me
Modified:
stable/12/bin/sh/sh.1
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/bin/sh/sh.1
==============================================================================
--- stable/12/bin/sh/sh.1 Sun Jul 26 09:15:05 2020 (r363543)
+++ stable/12/bin/sh/sh.1 Sun Jul 26 09:47:01 2020 (r363544)
@@ -32,7 +32,7 @@
.\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95
.\" $FreeBSD$
.\"
-.Dd February 24, 2019
+.Dd July 6, 2020
.Dt SH 1
.Os
.Sh NAME
@@ -1425,9 +1425,9 @@ The final component of the current working directory.
The entire path of the current working directory.
.It Li \e$
Superuser status.
-.Dq Li "$ "
+.Dq Li "$"
for normal users and
-.Dq Li "# "
+.Dq Li "#"
for superusers.
.It Li \e\e
A literal backslash.
More information about the svn-src-stable
mailing list