Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/sh PR bin/45390
details: https://anonhg.NetBSD.org/src/rev/9c976e26ac28
branches: trunk
changeset: 990606:9c976e26ac28
user: kre <kre%NetBSD.org@localhost>
date: Sun Oct 31 02:12:08 2021 +0000
description:
PR bin/45390
Be explicit about what happens to PWD after a successful cd command.
Also be very clear that "cd" and "cd -P" are the same thing, and
the only cd variant implemented.
Also, when it is appropriate to print the new directory after a cd
command, note that it happens if interactive (as it always has here)
and also if the posix option is set (for POSIX compat, where "interactive"
is irrelevant). Mention that "cd -" is a case where the new directory
is printed (along with paths relative to a non-empty CDPATH entry,
and where the "cd old new" (string replacement in curdir) is used.
While here document the new -e option to cd.
XXX pullup -9
diffstat:
bin/sh/sh.1 | 80 ++++++++++++++++++++++++++++++++++++++++++++----------------
1 files changed, 59 insertions(+), 21 deletions(-)
diffs (131 lines):
diff -r 7c353a2c5dfd -r 9c976e26ac28 bin/sh/sh.1
--- a/bin/sh/sh.1 Sun Oct 31 02:12:01 2021 +0000
+++ b/bin/sh/sh.1 Sun Oct 31 02:12:08 2021 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: sh.1,v 1.235 2021/10/26 00:05:38 kre Exp $
+.\" $NetBSD: sh.1,v 1.236 2021/10/31 02:12:08 kre Exp $
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
@@ -31,7 +31,7 @@
.\"
.\" @(#)sh.1 8.6 (Berkeley) 5/4/95
.\"
-.Dd October 25, 2021
+.Dd October 31, 2021
.Dt SH 1
.\" everything except c o and s (keep them ordered)
.ds flags abCEeFfhIiLmnpquVvXx
@@ -83,10 +83,7 @@
.Sh DESCRIPTION
.Nm
is the standard command interpreter for the system.
-The current version of
-.Nm
-is in the process of being changed to conform more closely to the
-POSIX 1003.2 and 1003.2a specifications for the shell.
+It is a re-implementation and extension of the Bourne shell.
This version has many
features which make it appear similar in some respects to the Korn shell,
but it is not a Korn shell clone (see
@@ -2445,7 +2442,7 @@
.El
.\"
.Pp
-.It Ic cd Oo Fl P Oc Op Ar directory Op Ar replace
+.It Ic cd Oo Fl Pe Oc Op Ar directory Op Ar replace
Switch to the specified directory (default
.Ev $HOME ) .
If
@@ -2480,14 +2477,44 @@
.Pp
The
.Fl P
-option instructs the shell to update
+option
+(which is the unalterable default in this
+.Nm )
+instructs the shell to
+change to the directory specified (or determined)
+and if successful
+update
+.Ev PWD
+with the new physical directory path.
+That is the path name, not traversing any symbolic links,
+of the altered working directory of the shell.
+.Pp
+The
+.Fl e
+option alters the interpretation of the exit status.
+.Ic cd
+will exit with status 0 if successful.
+If the directory was successfully changed, but
.Ev PWD
-with the specified physical directory path and change to that directory.
-This is the default.
-.Pp
-When the directory changes, the variable
+was unable to be updated,
+.Ic cd
+will exit with status 1 if the
+.Fl e
+option was given, and status 0 otherwise.
+Upon any other error,
+including usage errors,
+and failing to successfully change directory,
+.Ic cd
+will exit with status 2.
+.Pp
+When the directory changes,
+and
+.Ev PWD
+is updated, the variable
.Ev OLDPWD
-is set to the working directory before the change.
+is set to the working directory
+.Po \&\$ Ns Ev PWD Ns Pc
+as it was before the change.
.Pp
Some shells also support a
.Fl L
@@ -2497,21 +2524,32 @@
accordingly.
This is not supported.
.Pp
-In an interactive shell, the
+In an interactive shell, or if the
+.Cm posix
+option is set, the
.Ic cd
command will print out the name of the
-directory that it actually switched to if this is different from the name
+directory that it actually switched to
+.Po that is, the pathname passed to the successful
+.Xr chdir 2
+.No system call Pc
+if this is different from the name
that the user gave,
-or always if the
+or if the
.Cm cdprint
option is set.
-The destination may be different either because the
+The destination may be different because
+a non-empty element of the
.Ev CDPATH
-mechanism was used
-.\" or because a symbolic link was crossed.
-or if the
+mechanism was used,
+.\" or because a symbolic link was crossed. XXX Definitively not.
+or because the
.Ar replace
-argument was used.
+argument was used,
+or because the
+.Ar directory
+parameter was specified as
+.Dq \&\- .
.\"
.Pp
.It Ic eval Ar string ...
Home |
Main Index |
Thread Index |
Old Index