aboutsummaryrefslogtreecommitdiff
path: root/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/Makefile1
-rw-r--r--bin/sh/TOUR1
-rw-r--r--bin/sh/alias.c3
-rw-r--r--bin/sh/alias.h2
-rw-r--r--bin/sh/arith.h2
-rw-r--r--bin/sh/bltin/bltin.h2
-rw-r--r--bin/sh/bltin/echo.c2
-rw-r--r--bin/sh/builtins.def2
-rw-r--r--bin/sh/cd.c3
-rw-r--r--bin/sh/error.c3
-rw-r--r--bin/sh/error.h2
-rw-r--r--bin/sh/eval.c3
-rw-r--r--bin/sh/eval.h2
-rw-r--r--bin/sh/exec.c3
-rw-r--r--bin/sh/exec.h2
-rw-r--r--bin/sh/expand.c3
-rw-r--r--bin/sh/expand.h2
-rw-r--r--bin/sh/funcs/cmv2
-rw-r--r--bin/sh/funcs/dirs2
-rw-r--r--bin/sh/funcs/login2
-rw-r--r--bin/sh/funcs/newgrp2
-rw-r--r--bin/sh/funcs/popd2
-rw-r--r--bin/sh/funcs/pushd2
-rw-r--r--bin/sh/funcs/suspend2
-rw-r--r--bin/sh/histedit.c3
-rw-r--r--bin/sh/input.c3
-rw-r--r--bin/sh/input.h2
-rw-r--r--bin/sh/jobs.c3
-rw-r--r--bin/sh/jobs.h2
-rw-r--r--bin/sh/mail.c3
-rw-r--r--bin/sh/mail.h2
-rw-r--r--bin/sh/main.c3
-rw-r--r--bin/sh/main.h2
-rw-r--r--bin/sh/memalloc.c3
-rw-r--r--bin/sh/memalloc.h2
-rw-r--r--bin/sh/miscbltin.c3
-rwxr-xr-xbin/sh/mkbuiltins2
-rw-r--r--bin/sh/mknodes.c3
-rw-r--r--bin/sh/mksyntax.c3
-rw-r--r--bin/sh/mktokens2
-rw-r--r--bin/sh/myhistedit.h2
-rw-r--r--bin/sh/mystring.c3
-rw-r--r--bin/sh/mystring.h2
-rw-r--r--bin/sh/nodes.c.pat2
-rw-r--r--bin/sh/nodetypes2
-rw-r--r--bin/sh/options.c3
-rw-r--r--bin/sh/options.h2
-rw-r--r--bin/sh/output.c3
-rw-r--r--bin/sh/output.h2
-rw-r--r--bin/sh/parser.c3
-rw-r--r--bin/sh/parser.h2
-rw-r--r--bin/sh/redir.c3
-rw-r--r--bin/sh/redir.h2
-rw-r--r--bin/sh/sh.12
-rw-r--r--bin/sh/shell.h2
-rw-r--r--bin/sh/show.c3
-rw-r--r--bin/sh/show.h2
-rw-r--r--bin/sh/trap.c3
-rw-r--r--bin/sh/trap.h2
-rw-r--r--bin/sh/var.c3
-rw-r--r--bin/sh/var.h2
61 files changed, 0 insertions, 143 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index 48b6d2852444..d2043ecad269 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -1,4 +1,3 @@
-# @(#)Makefile 8.4 (Berkeley) 5/5/95
.include <src.opts.mk>
diff --git a/bin/sh/TOUR b/bin/sh/TOUR
index 434fb4b46e1a..37bed64b4080 100644
--- a/bin/sh/TOUR
+++ b/bin/sh/TOUR
@@ -1,4 +1,3 @@
-# @(#)TOUR 8.1 (Berkeley) 5/31/93
NOTE -- This is the original TOUR paper distributed with ash and
does not represent the current state of the shell. It is provided anyway
diff --git a/bin/sh/alias.c b/bin/sh/alias.c
index da860be704b6..239b85f977bc 100644
--- a/bin/sh/alias.c
+++ b/bin/sh/alias.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <stdlib.h>
diff --git a/bin/sh/alias.h b/bin/sh/alias.h
index a8108d44be2d..d0644b317472 100644
--- a/bin/sh/alias.h
+++ b/bin/sh/alias.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)alias.h 8.2 (Berkeley) 5/4/95
*/
#define ALIASINUSE 1
diff --git a/bin/sh/arith.h b/bin/sh/arith.h
index 124fd5944a56..3a7521956c09 100644
--- a/bin/sh/arith.h
+++ b/bin/sh/arith.h
@@ -25,8 +25,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)arith.h 1.1 (Berkeley) 5/4/95
*/
#include "shell.h"
diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h
index 226d630694b5..8d541ed1e138 100644
--- a/bin/sh/bltin/bltin.h
+++ b/bin/sh/bltin/bltin.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)bltin.h 8.2 (Berkeley) 5/4/95
*/
/*
diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c
index 1e5b719b4eaf..648965ba78fa 100644
--- a/bin/sh/bltin/echo.c
+++ b/bin/sh/bltin/echo.c
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)echo.c 8.2 (Berkeley) 5/4/95
*/
#include <sys/cdefs.h>
diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def
index dde37b2285ab..00f363bfb1c7 100644
--- a/bin/sh/builtins.def
+++ b/bin/sh/builtins.def
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)builtins.def 8.4 (Berkeley) 5/4/95
#
# This file lists all the builtin commands. The first column is the name
diff --git a/bin/sh/cd.c b/bin/sh/cd.c
index a10299b12365..4c8b4c49ac0f 100644
--- a/bin/sh/cd.c
+++ b/bin/sh/cd.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/bin/sh/error.c b/bin/sh/error.c
index ae87807b7527..8f129509b8bc 100644
--- a/bin/sh/error.c
+++ b/bin/sh/error.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)error.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/error.h b/bin/sh/error.h
index c097c529dc01..cb64ec85c09f 100644
--- a/bin/sh/error.h
+++ b/bin/sh/error.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)error.h 8.2 (Berkeley) 5/4/95
*/
/*
diff --git a/bin/sh/eval.c b/bin/sh/eval.c
index 778aa60c52f1..a92adc348c2a 100644
--- a/bin/sh/eval.c
+++ b/bin/sh/eval.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <paths.h>
diff --git a/bin/sh/eval.h b/bin/sh/eval.h
index 361e0f2ba269..9a47e9a8db23 100644
--- a/bin/sh/eval.h
+++ b/bin/sh/eval.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)eval.h 8.2 (Berkeley) 5/4/95
*/
extern char *commandname; /* currently executing command */
diff --git a/bin/sh/exec.c b/bin/sh/exec.c
index a3df254a39dd..b05dff807266 100644
--- a/bin/sh/exec.c
+++ b/bin/sh/exec.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)exec.c 8.4 (Berkeley) 6/8/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/bin/sh/exec.h b/bin/sh/exec.h
index 493be0178272..ff4d5b3c20bc 100644
--- a/bin/sh/exec.h
+++ b/bin/sh/exec.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)exec.h 8.3 (Berkeley) 6/8/95
*/
/* values of cmdtype */
diff --git a/bin/sh/expand.c b/bin/sh/expand.c
index 444f35cdb72d..4403fa8205e7 100644
--- a/bin/sh/expand.c
+++ b/bin/sh/expand.c
@@ -35,9 +35,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)expand.c 8.5 (Berkeley) 5/15/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/bin/sh/expand.h b/bin/sh/expand.h
index 2cf6d2ee0972..972032583958 100644
--- a/bin/sh/expand.h
+++ b/bin/sh/expand.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)expand.h 8.2 (Berkeley) 5/4/95
*/
struct arglist {
diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv
index 9a71ef816a42..a87fcf8b7757 100644
--- a/bin/sh/funcs/cmv
+++ b/bin/sh/funcs/cmv
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)cmv 8.2 (Berkeley) 5/4/95
# Conditional move--don't replace an existing file.
diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs
index 3aa1057c4552..816230386725 100644
--- a/bin/sh/funcs/dirs
+++ b/bin/sh/funcs/dirs
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)dirs 8.2 (Berkeley) 5/4/95
# pushd, popd, and dirs --- written by Chris Bertin
# Pixel Computer Inc. ...!wjh12!pixel!pixutl!chris
diff --git a/bin/sh/funcs/login b/bin/sh/funcs/login
index e40429782f18..1569f88cb6be 100644
--- a/bin/sh/funcs/login
+++ b/bin/sh/funcs/login
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)login 8.2 (Berkeley) 5/4/95
# replaces the login builtin in the BSD shell
login () exec login "$@"
diff --git a/bin/sh/funcs/newgrp b/bin/sh/funcs/newgrp
index e4753a009227..ab7d202940e5 100644
--- a/bin/sh/funcs/newgrp
+++ b/bin/sh/funcs/newgrp
@@ -30,7 +30,5 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)newgrp 8.2 (Berkeley) 5/4/95
newgrp() exec newgrp "$@"
diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd
index 75d0f2124393..816230386725 100644
--- a/bin/sh/funcs/popd
+++ b/bin/sh/funcs/popd
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)popd 8.2 (Berkeley) 5/4/95
# pushd, popd, and dirs --- written by Chris Bertin
# Pixel Computer Inc. ...!wjh12!pixel!pixutl!chris
diff --git a/bin/sh/funcs/pushd b/bin/sh/funcs/pushd
index 19045396f07f..816230386725 100644
--- a/bin/sh/funcs/pushd
+++ b/bin/sh/funcs/pushd
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)pushd 8.2 (Berkeley) 5/4/95
# pushd, popd, and dirs --- written by Chris Bertin
# Pixel Computer Inc. ...!wjh12!pixel!pixutl!chris
diff --git a/bin/sh/funcs/suspend b/bin/sh/funcs/suspend
index ab86bb8be600..fd54c7050ddf 100644
--- a/bin/sh/funcs/suspend
+++ b/bin/sh/funcs/suspend
@@ -28,8 +28,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)suspend 8.2 (Berkeley) 5/4/95
suspend() {
local -
diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c
index 842c166159bc..d2ad33356883 100644
--- a/bin/sh/histedit.c
+++ b/bin/sh/histedit.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/param.h>
diff --git a/bin/sh/input.c b/bin/sh/input.c
index 2ba4c7dd9e00..859f2a650fdc 100644
--- a/bin/sh/input.c
+++ b/bin/sh/input.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <stdio.h> /* defines BUFSIZ */
diff --git a/bin/sh/input.h b/bin/sh/input.h
index b46e2c021e70..8cf4df1e4044 100644
--- a/bin/sh/input.h
+++ b/bin/sh/input.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)input.h 8.2 (Berkeley) 5/4/95
*/
/* PEOF (the end of file marker) is defined in syntax.h */
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index 47835cb1b5b2..45f3f66bc7eb 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/ioctl.h>
diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h
index 050c86a91ff8..149b85d7df80 100644
--- a/bin/sh/jobs.h
+++ b/bin/sh/jobs.h
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)jobs.h 8.2 (Berkeley) 5/4/95
*/
/* Mode argument to forkshell. Don't change FORK_FG or FORK_BG. */
diff --git a/bin/sh/mail.c b/bin/sh/mail.c
index e69d8b193eb0..c5abc9bc3d8e 100644
--- a/bin/sh/mail.c
+++ b/bin/sh/mail.c
@@ -31,9 +31,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)mail.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/mail.h b/bin/sh/mail.h
index 0a52e9f198a1..fd05aaddf7af 100644
--- a/bin/sh/mail.h
+++ b/bin/sh/mail.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)mail.h 8.2 (Berkeley) 5/4/95
*/
void chkmail(int);
diff --git a/bin/sh/main.c b/bin/sh/main.c
index 7a4dbc254f81..b4759b67ee0c 100644
--- a/bin/sh/main.c
+++ b/bin/sh/main.c
@@ -39,9 +39,6 @@ static char const copyright[] =
#endif /* not lint */
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/28/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <stdio.h>
diff --git a/bin/sh/main.h b/bin/sh/main.h
index 38f9b271c309..68a3ddc33126 100644
--- a/bin/sh/main.h
+++ b/bin/sh/main.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)main.h 8.2 (Berkeley) 5/4/95
*/
extern int rootpid; /* pid of main shell */
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index 9bd37488d040..ee4dff26fac4 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/param.h>
diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h
index 038d18173c7b..ef090d51896d 100644
--- a/bin/sh/memalloc.h
+++ b/bin/sh/memalloc.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)memalloc.h 8.2 (Berkeley) 5/4/95
*/
#include <string.h>
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c
index 5d5c137a7d11..e0e332845221 100644
--- a/bin/sh/miscbltin.c
+++ b/bin/sh/miscbltin.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)miscbltin.c 8.4 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index 233ad4d2a1f4..e0f997ba50ae 100755
--- a/bin/sh/mkbuiltins
+++ b/bin/sh/mkbuiltins
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)mkbuiltins 8.2 (Berkeley) 5/4/95
temp=`mktemp -t ka`
srcdir=$1
diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c
index c6fc0e6d9a73..4fbf01906cb3 100644
--- a/bin/sh/mknodes.c
+++ b/bin/sh/mknodes.c
@@ -39,9 +39,6 @@ static char const copyright[] =
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
-#ifndef lint
-static char sccsid[] = "@(#)mknodes.c 8.2 (Berkeley) 5/4/95";
-#endif /* not lint */
#endif
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c
index 7abef048bdb0..a8a671ffa0a9 100644
--- a/bin/sh/mksyntax.c
+++ b/bin/sh/mksyntax.c
@@ -39,9 +39,6 @@ static char const copyright[] =
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
-#ifndef lint
-static char sccsid[] = "@(#)mksyntax.c 8.2 (Berkeley) 5/4/95";
-#endif /* not lint */
#endif
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/mktokens b/bin/sh/mktokens
index 11464038d368..1b0b0b9a586a 100644
--- a/bin/sh/mktokens
+++ b/bin/sh/mktokens
@@ -30,8 +30,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)mktokens 8.1 (Berkeley) 5/31/93
# The following is a list of tokens. The second column is nonzero if the
# token marks the end of a list. The third column is the name to print in
diff --git a/bin/sh/myhistedit.h b/bin/sh/myhistedit.h
index ef84a90bf5b0..64539fc06c18 100644
--- a/bin/sh/myhistedit.h
+++ b/bin/sh/myhistedit.h
@@ -27,8 +27,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)myhistedit.h 8.2 (Berkeley) 5/4/95
*/
#include <histedit.h>
diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c
index 760b8bba76ce..3d4f5d145446 100644
--- a/bin/sh/mystring.c
+++ b/bin/sh/mystring.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)mystring.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h
index dcbdc91cb5d5..d51d22de83a1 100644
--- a/bin/sh/mystring.h
+++ b/bin/sh/mystring.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)mystring.h 8.2 (Berkeley) 5/4/95
*/
#include <string.h>
diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat
index 9172c544de3d..9cee0715d4fc 100644
--- a/bin/sh/nodes.c.pat
+++ b/bin/sh/nodes.c.pat
@@ -28,8 +28,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)nodes.c.pat 8.2 (Berkeley) 5/4/95
*/
#include <sys/param.h>
diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes
index 6b5d4dd82dec..1507a7ae847e 100644
--- a/bin/sh/nodetypes
+++ b/bin/sh/nodetypes
@@ -28,8 +28,6 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
-#
-# @(#)nodetypes 8.2 (Berkeley) 5/4/95
# This file describes the nodes used in parse trees. Unindented lines
# contain a node type followed by a structure tag. Subsequent indented
diff --git a/bin/sh/options.c b/bin/sh/options.c
index 87ee4ab5c658..c00d82a136ae 100644
--- a/bin/sh/options.c
+++ b/bin/sh/options.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <signal.h>
diff --git a/bin/sh/options.h b/bin/sh/options.h
index 9c516b07ad23..206d32c8a706 100644
--- a/bin/sh/options.h
+++ b/bin/sh/options.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)options.h 8.2 (Berkeley) 5/4/95
*/
struct shparam {
diff --git a/bin/sh/output.c b/bin/sh/output.c
index c5f9d758dd92..33d5af4be915 100644
--- a/bin/sh/output.c
+++ b/bin/sh/output.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
/*
diff --git a/bin/sh/output.h b/bin/sh/output.h
index 409cc16df75e..3afc3f289ad6 100644
--- a/bin/sh/output.h
+++ b/bin/sh/output.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)output.h 8.2 (Berkeley) 5/4/95
*/
#ifndef OUTPUT_INCL
diff --git a/bin/sh/parser.c b/bin/sh/parser.c
index 8e959b46596b..aa181e567bb1 100644
--- a/bin/sh/parser.c
+++ b/bin/sh/parser.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/param.h>
diff --git a/bin/sh/parser.h b/bin/sh/parser.h
index 5f5249866b0a..933066be87f0 100644
--- a/bin/sh/parser.h
+++ b/bin/sh/parser.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)parser.h 8.3 (Berkeley) 5/4/95
*/
/* control characters in argument strings */
diff --git a/bin/sh/redir.c b/bin/sh/redir.c
index 7e17156105e5..66196dc110b9 100644
--- a/bin/sh/redir.c
+++ b/bin/sh/redir.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)redir.c 8.2 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <sys/types.h>
diff --git a/bin/sh/redir.h b/bin/sh/redir.h
index f49d0ddc9a73..de780f0c1bfc 100644
--- a/bin/sh/redir.h
+++ b/bin/sh/redir.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)redir.h 8.2 (Berkeley) 5/4/95
*/
/* flags passed to redirect */
diff --git a/bin/sh/sh.1 b/bin/sh/sh.1
index adbc32827046..849133540cdd 100644
--- a/bin/sh/sh.1
+++ b/bin/sh/sh.1
@@ -29,8 +29,6 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95
-.\"
.Dd December 14, 2022
.Dt SH 1
.Os
diff --git a/bin/sh/shell.h b/bin/sh/shell.h
index 64a2be86b4f7..4b598899dee1 100644
--- a/bin/sh/shell.h
+++ b/bin/sh/shell.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)shell.h 8.2 (Berkeley) 5/4/95
*/
#ifndef SHELL_H_
diff --git a/bin/sh/show.c b/bin/sh/show.c
index 70b71875c774..0b772dd18eab 100644
--- a/bin/sh/show.c
+++ b/bin/sh/show.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)show.c 8.3 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <fcntl.h>
diff --git a/bin/sh/show.h b/bin/sh/show.h
index 9dc77c6857d6..d57ba9aee8c0 100644
--- a/bin/sh/show.h
+++ b/bin/sh/show.h
@@ -27,8 +27,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)show.h 1.1 (Berkeley) 5/4/95
*/
void showtree(union node *);
diff --git a/bin/sh/trap.c b/bin/sh/trap.c
index 02fce4215f0b..0b95278eaf68 100644
--- a/bin/sh/trap.c
+++ b/bin/sh/trap.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)trap.c 8.5 (Berkeley) 6/5/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <signal.h>
diff --git a/bin/sh/trap.h b/bin/sh/trap.h
index f7985e8e70a1..c7da30326911 100644
--- a/bin/sh/trap.h
+++ b/bin/sh/trap.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)trap.h 8.3 (Berkeley) 6/5/95
*/
extern volatile sig_atomic_t pendingsig;
diff --git a/bin/sh/var.c b/bin/sh/var.c
index 56be5c9d513d..262e3e5b1066 100644
--- a/bin/sh/var.c
+++ b/bin/sh/var.c
@@ -33,9 +33,6 @@
*/
#ifndef lint
-#if 0
-static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 5/4/95";
-#endif
#endif /* not lint */
#include <sys/cdefs.h>
#include <unistd.h>
diff --git a/bin/sh/var.h b/bin/sh/var.h
index abd2a47c1979..800f7bcc0390 100644
--- a/bin/sh/var.h
+++ b/bin/sh/var.h
@@ -30,8 +30,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * @(#)var.h 8.2 (Berkeley) 5/4/95
*/
/*