Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jul 2020 10:05:35 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362957 - head/bin/sh
Message-ID:  <202007061005.066A5Z5M046927@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp (doc,ports committer)
Date: Mon Jul  6 10:05:35 2020
New Revision: 362957
URL: https://svnweb.freebsd.org/changeset/base/362957

Log:
  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@pm.me
  MFC after:	7 days

Modified:
  head/bin/sh/sh.1

Modified: head/bin/sh/sh.1
==============================================================================
--- head/bin/sh/sh.1	Mon Jul  6 09:53:00 2020	(r362956)
+++ head/bin/sh/sh.1	Mon Jul  6 10:05:35 2020	(r362957)
@@ -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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007061005.066A5Z5M046927>