aboutsummaryrefslogtreecommitdiff
path: root/bin/sh
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1994-09-24 02:59:15 +0000
committerDavid Greenman <dg@FreeBSD.org>1994-09-24 02:59:15 +0000
commit89730b290a5b2a1506fc7b4a1e604d01e16395ad (patch)
treeb7c3f7bad4381fe5b507b6cf1947fd57803fe125 /bin/sh
parent1ee6b373eb024652b73587eabcad2b9fa32fe121 (diff)
downloadsrc-89730b290a5b2a1506fc7b4a1e604d01e16395ad.tar.gz
src-89730b290a5b2a1506fc7b4a1e604d01e16395ad.zip
Notes
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/Makefile1
-rw-r--r--bin/sh/TOUR1
-rw-r--r--bin/sh/alias.c2
-rw-r--r--bin/sh/alias.h1
-rw-r--r--bin/sh/arith.y2
-rw-r--r--bin/sh/arith_lex.l2
-rw-r--r--bin/sh/bltin/bltin.h1
-rw-r--r--bin/sh/bltin/echo.11
-rw-r--r--bin/sh/bltin/echo.c1
-rwxr-xr-xbin/sh/builtins1
-rw-r--r--bin/sh/cd.c2
-rw-r--r--bin/sh/errmsg.c2
-rw-r--r--bin/sh/errmsg.h1
-rw-r--r--bin/sh/error.c2
-rw-r--r--bin/sh/error.h1
-rw-r--r--bin/sh/eval.c2
-rw-r--r--bin/sh/eval.h1
-rw-r--r--bin/sh/exec.c2
-rw-r--r--bin/sh/exec.h1
-rw-r--r--bin/sh/expand.c2
-rw-r--r--bin/sh/expand.h1
-rw-r--r--bin/sh/funcs/cmv1
-rw-r--r--bin/sh/funcs/dirs1
-rw-r--r--bin/sh/funcs/kill1
-rw-r--r--bin/sh/funcs/login1
-rw-r--r--bin/sh/funcs/newgrp1
-rw-r--r--bin/sh/funcs/popd1
-rw-r--r--bin/sh/funcs/pushd1
-rw-r--r--bin/sh/funcs/suspend1
-rw-r--r--bin/sh/histedit.c2
-rw-r--r--bin/sh/init.h1
-rw-r--r--bin/sh/input.c2
-rw-r--r--bin/sh/input.h1
-rw-r--r--bin/sh/jobs.c2
-rw-r--r--bin/sh/jobs.h1
-rw-r--r--bin/sh/machdep.h1
-rw-r--r--bin/sh/mail.c2
-rw-r--r--bin/sh/mail.h1
-rw-r--r--bin/sh/main.c2
-rw-r--r--bin/sh/main.h1
-rw-r--r--bin/sh/memalloc.c2
-rw-r--r--bin/sh/memalloc.h1
-rw-r--r--bin/sh/miscbltin.c2
-rwxr-xr-xbin/sh/mkbuiltins1
-rw-r--r--bin/sh/mkinit.c2
-rw-r--r--bin/sh/mknodes.c2
-rw-r--r--bin/sh/mksignames.c2
-rw-r--r--bin/sh/mksyntax.c2
-rw-r--r--bin/sh/mktokens1
-rw-r--r--bin/sh/myhistedit.h1
-rw-r--r--bin/sh/mystring.c2
-rw-r--r--bin/sh/mystring.h1
-rw-r--r--bin/sh/nodes.c.pat1
-rw-r--r--bin/sh/nodetypes1
-rw-r--r--bin/sh/options.c2
-rw-r--r--bin/sh/options.h1
-rw-r--r--bin/sh/output.c2
-rw-r--r--bin/sh/output.h1
-rw-r--r--bin/sh/parser.c2
-rw-r--r--bin/sh/parser.h1
-rw-r--r--bin/sh/redir.c2
-rw-r--r--bin/sh/redir.h1
-rw-r--r--bin/sh/sh.11
-rw-r--r--bin/sh/shell.h1
-rw-r--r--bin/sh/show.c2
-rw-r--r--bin/sh/trap.c2
-rw-r--r--bin/sh/trap.h1
-rw-r--r--bin/sh/var.c2
-rw-r--r--bin/sh/var.h1
69 files changed, 97 insertions, 0 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index 4279c9e8f570..99f0b85a7250 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -1,4 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/8/93
+# $Id$
PROG= sh
SRCS= alias.c builtins.c cd.c echo.c error.c eval.c exec.c expand.c \
diff --git a/bin/sh/TOUR b/bin/sh/TOUR
index 3514a4e1c55c..23925e4fa312 100644
--- a/bin/sh/TOUR
+++ b/bin/sh/TOUR
@@ -1,4 +1,5 @@
# @(#)TOUR 8.1 (Berkeley) 5/31/93
+# $Id$
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 3cf38a93f239..97292afcefe0 100644
--- a/bin/sh/alias.c
+++ b/bin/sh/alias.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/alias.h b/bin/sh/alias.h
index adc56a9b2b6e..b5fed8dd50dd 100644
--- a/bin/sh/alias.h
+++ b/bin/sh/alias.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)alias.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#define ALIASINUSE 1
diff --git a/bin/sh/arith.y b/bin/sh/arith.y
index 4b2e78f7f24a..b71be6ba639a 100644
--- a/bin/sh/arith.y
+++ b/bin/sh/arith.y
@@ -73,6 +73,8 @@ expr: ARITH_LPAREN expr ARITH_RPAREN = { $$ = $2; }
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l
index 0fb1c7b41648..c50463f56815 100644
--- a/bin/sh/arith_lex.l
+++ b/bin/sh/arith_lex.l
@@ -33,6 +33,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h
index c8bf8d58ea8b..67011295874d 100644
--- a/bin/sh/bltin/bltin.h
+++ b/bin/sh/bltin/bltin.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)bltin.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1
index d2cb8d12c18f..435b85131a08 100644
--- a/bin/sh/bltin/echo.1
+++ b/bin/sh/bltin/echo.1
@@ -34,6 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)echo.1 8.1 (Berkeley) 5/31/93
+.\" $Id$
.\"
.Dd May 31, 1993
.Dt ECHO 1
diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c
index c1d897027748..7046e1cd0696 100644
--- a/bin/sh/bltin/echo.c
+++ b/bin/sh/bltin/echo.c
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)echo.c 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/builtins b/bin/sh/builtins
index 57409b1fc77e..96247185b34b 100755
--- a/bin/sh/builtins
+++ b/bin/sh/builtins
@@ -35,6 +35,7 @@
# SUCH DAMAGE.
#
# @(#)builtins 8.1 (Berkeley) 5/31/93
+# $Id$
#
# 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 d1984d9fb111..b81199e0feb4 100644
--- a/bin/sh/cd.c
+++ b/bin/sh/cd.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/errmsg.c b/bin/sh/errmsg.c
index 2a0303b666f1..87a8d0cd1bdf 100644
--- a/bin/sh/errmsg.c
+++ b/bin/sh/errmsg.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/errmsg.h b/bin/sh/errmsg.h
index 03cb605ecd6c..209094a3843d 100644
--- a/bin/sh/errmsg.h
+++ b/bin/sh/errmsg.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)errmsg.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#define E_OPEN 01
diff --git a/bin/sh/error.c b/bin/sh/error.c
index b6853b659aa3..45795c937ed2 100644
--- a/bin/sh/error.c
+++ b/bin/sh/error.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/error.h b/bin/sh/error.h
index 8f87caff1bea..03a2f89c56e1 100644
--- a/bin/sh/error.h
+++ b/bin/sh/error.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)error.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/eval.c b/bin/sh/eval.c
index 48a9f99dc58c..91576cada507 100644
--- a/bin/sh/eval.c
+++ b/bin/sh/eval.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/eval.h b/bin/sh/eval.h
index 5789bcbcffa5..6d64449599f9 100644
--- a/bin/sh/eval.h
+++ b/bin/sh/eval.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)eval.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
extern char *commandname; /* currently executing command */
diff --git a/bin/sh/exec.c b/bin/sh/exec.c
index 64c8790162af..2dd178c436d7 100644
--- a/bin/sh/exec.c
+++ b/bin/sh/exec.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/exec.h b/bin/sh/exec.h
index a82b0d16b90a..90d91003ae33 100644
--- a/bin/sh/exec.h
+++ b/bin/sh/exec.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)exec.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/* values of cmdtype */
diff --git a/bin/sh/expand.c b/bin/sh/expand.c
index edee495d95c5..099c26654924 100644
--- a/bin/sh/expand.c
+++ b/bin/sh/expand.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/expand.h b/bin/sh/expand.h
index 5c6758fbdacd..6af4360abe16 100644
--- a/bin/sh/expand.h
+++ b/bin/sh/expand.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)expand.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
struct strlist {
diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv
index a0921efbe497..cacb5ba65c51 100644
--- a/bin/sh/funcs/cmv
+++ b/bin/sh/funcs/cmv
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)cmv 8.1 (Berkeley) 5/31/93
+# $Id$
# Conditional move--don't replace an existing file.
diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs
index 04b7fe1751e5..fe70c6856c70 100644
--- a/bin/sh/funcs/dirs
+++ b/bin/sh/funcs/dirs
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)dirs 8.1 (Berkeley) 5/31/93
+# $Id$
# pushd, popd, and dirs --- written by Chris Bertin
# Pixel Computer Inc. ...!wjh12!pixel!pixutl!chris
diff --git a/bin/sh/funcs/kill b/bin/sh/funcs/kill
index da670e96c739..f3489b5efe3c 100644
--- a/bin/sh/funcs/kill
+++ b/bin/sh/funcs/kill
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)kill 8.1 (Berkeley) 5/31/93
+# $Id$
# Convert job names to process ids and then run /bin/kill.
diff --git a/bin/sh/funcs/login b/bin/sh/funcs/login
index d8e9d6f6c02b..f44d3a593d78 100644
--- a/bin/sh/funcs/login
+++ b/bin/sh/funcs/login
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)login 8.1 (Berkeley) 5/31/93
+# $Id$
# replaces the login builtin in the BSD shell
login () exec login "$@"
diff --git a/bin/sh/funcs/newgrp b/bin/sh/funcs/newgrp
index d5aa63efd897..fc02baacd0fa 100644
--- a/bin/sh/funcs/newgrp
+++ b/bin/sh/funcs/newgrp
@@ -33,5 +33,6 @@
# SUCH DAMAGE.
#
# @(#)newgrp 8.1 (Berkeley) 5/31/93
+# $Id$
newgrp() exec newgrp "$@"
diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd
index 2f4de3a31b18..938aabc2b702 100644
--- a/bin/sh/funcs/popd
+++ b/bin/sh/funcs/popd
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)popd 8.1 (Berkeley) 5/31/93
+# $Id$
# 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 0c503531fa6b..879ae207c111 100644
--- a/bin/sh/funcs/pushd
+++ b/bin/sh/funcs/pushd
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)pushd 8.1 (Berkeley) 5/31/93
+# $Id$
# 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 44839653ac04..3a0735c21856 100644
--- a/bin/sh/funcs/suspend
+++ b/bin/sh/funcs/suspend
@@ -33,6 +33,7 @@
# SUCH DAMAGE.
#
# @(#)suspend 8.1 (Berkeley) 5/31/93
+# $Id$
suspend() {
local -
diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c
index 0093c1708f3a..04b883be236d 100644
--- a/bin/sh/histedit.c
+++ b/bin/sh/histedit.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/init.h b/bin/sh/init.h
index b184361bf8fe..8466409e46f2 100644
--- a/bin/sh/init.h
+++ b/bin/sh/init.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)init.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#ifdef __STDC__
diff --git a/bin/sh/input.c b/bin/sh/input.c
index d1d84e122244..0150c300c04a 100644
--- a/bin/sh/input.c
+++ b/bin/sh/input.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/input.h b/bin/sh/input.h
index 754eda0f43bd..77b193b81c6a 100644
--- a/bin/sh/input.h
+++ b/bin/sh/input.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)input.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/* PEOF (the end of file marker) is defined in syntax.h */
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index 60f66ed63100..a93722c2f907 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h
index 246485093219..fd0802383377 100644
--- a/bin/sh/jobs.h
+++ b/bin/sh/jobs.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)jobs.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/* Mode argument to forkshell. Don't change FORK_FG or FORK_BG. */
diff --git a/bin/sh/machdep.h b/bin/sh/machdep.h
index 1d50dfbd2c14..97d82a952a72 100644
--- a/bin/sh/machdep.h
+++ b/bin/sh/machdep.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)machdep.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/mail.c b/bin/sh/mail.c
index 0f74ad82bd9d..a122c9bd0961 100644
--- a/bin/sh/mail.c
+++ b/bin/sh/mail.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mail.h b/bin/sh/mail.h
index d859e536bcf4..d7b4fe3e4c02 100644
--- a/bin/sh/mail.h
+++ b/bin/sh/mail.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)mail.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#ifdef __STDC__
diff --git a/bin/sh/main.c b/bin/sh/main.c
index dab9e646e5ec..0d33532fad80 100644
--- a/bin/sh/main.c
+++ b/bin/sh/main.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/main.h b/bin/sh/main.h
index b403b2ca026d..b43f04108575 100644
--- a/bin/sh/main.h
+++ b/bin/sh/main.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)main.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
extern int rootpid; /* pid of main shell */
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index 5fa246a4b2ba..873e30c8d6b4 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h
index 3f2c8007b176..43f3335567ee 100644
--- a/bin/sh/memalloc.h
+++ b/bin/sh/memalloc.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)memalloc.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
struct stackmark {
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c
index 4ea3a4cd38f6..52a66e72e65c 100644
--- a/bin/sh/miscbltin.c
+++ b/bin/sh/miscbltin.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index 48fc572dba66..13523fa4ab06 100755
--- a/bin/sh/mkbuiltins
+++ b/bin/sh/mkbuiltins
@@ -35,6 +35,7 @@
# SUCH DAMAGE.
#
# @(#)mkbuiltins 8.1 (Berkeley) 5/31/93
+# $Id$
temp=/tmp/ka$$
havejobs=0
diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c
index eac0374eca7e..adc79cc4be28 100644
--- a/bin/sh/mkinit.c
+++ b/bin/sh/mkinit.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c
index d93ebc0ec561..5ede3af9cef0 100644
--- a/bin/sh/mknodes.c
+++ b/bin/sh/mknodes.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mksignames.c b/bin/sh/mksignames.c
index fddbe1c90444..f64aaff444e1 100644
--- a/bin/sh/mksignames.c
+++ b/bin/sh/mksignames.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c
index 1ab323d7267b..b55545c20e32 100644
--- a/bin/sh/mksyntax.c
+++ b/bin/sh/mksyntax.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mktokens b/bin/sh/mktokens
index 41c014580d56..12983e846be4 100644
--- a/bin/sh/mktokens
+++ b/bin/sh/mktokens
@@ -35,6 +35,7 @@
# SUCH DAMAGE.
#
# @(#)mktokens 8.1 (Berkeley) 5/31/93
+# $Id$
# 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 bfa4c1171bdd..c08951117ba1 100644
--- a/bin/sh/myhistedit.h
+++ b/bin/sh/myhistedit.h
@@ -31,6 +31,7 @@
* SUCH DAMAGE.
*
* @(#)myhistedit.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#include <histedit.h>
diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c
index 1b9eeeab74ae..01b1add01abc 100644
--- a/bin/sh/mystring.c
+++ b/bin/sh/mystring.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h
index 27ec4ed1f7ec..ca04daab2543 100644
--- a/bin/sh/mystring.h
+++ b/bin/sh/mystring.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)mystring.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#include <string.h>
diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat
index 81c96bf580d4..e0602ed69ddb 100644
--- a/bin/sh/nodes.c.pat
+++ b/bin/sh/nodes.c.pat
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nodes.c.pat 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes
index d60e7698e1f0..5f33a1703e49 100644
--- a/bin/sh/nodetypes
+++ b/bin/sh/nodetypes
@@ -34,6 +34,7 @@
# SUCH DAMAGE.
#
# @(#)nodetypes 8.1 (Berkeley) 5/31/93
+# $Id$
# 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 9363e62b3afb..17e029d6fd99 100644
--- a/bin/sh/options.c
+++ b/bin/sh/options.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/options.h b/bin/sh/options.h
index 7d00f55d385e..095dc29c3f04 100644
--- a/bin/sh/options.h
+++ b/bin/sh/options.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)options.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
struct shparam {
diff --git a/bin/sh/output.c b/bin/sh/output.c
index 88ef764991ff..914df67eb387 100644
--- a/bin/sh/output.c
+++ b/bin/sh/output.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/output.h b/bin/sh/output.h
index 5b4764cdbf31..e4318f3cacb1 100644
--- a/bin/sh/output.h
+++ b/bin/sh/output.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)output.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
#ifndef OUTPUT_INCL
diff --git a/bin/sh/parser.c b/bin/sh/parser.c
index 30cc92d330ef..f3b9bcfe6462 100644
--- a/bin/sh/parser.c
+++ b/bin/sh/parser.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/parser.h b/bin/sh/parser.h
index e1c3c23d2279..7408bd7a340c 100644
--- a/bin/sh/parser.h
+++ b/bin/sh/parser.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)parser.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/* control characters in argument strings */
diff --git a/bin/sh/redir.c b/bin/sh/redir.c
index b91ce5a5ce94..1b4a282aa52c 100644
--- a/bin/sh/redir.c
+++ b/bin/sh/redir.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/redir.h b/bin/sh/redir.h
index 81cc76082eb7..05842bba5137 100644
--- a/bin/sh/redir.h
+++ b/bin/sh/redir.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)redir.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/* flags passed to redirect */
diff --git a/bin/sh/sh.1 b/bin/sh/sh.1
index 8bec2e7e8abb..1390533e0243 100644
--- a/bin/sh/sh.1
+++ b/bin/sh/sh.1
@@ -33,6 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)sh.1 8.4 (Berkeley) 4/18/94
+.\" $Id$
.\"
.na
.TH SH 1
diff --git a/bin/sh/shell.h b/bin/sh/shell.h
index 87f4795580b7..ec49ef9ada6b 100644
--- a/bin/sh/shell.h
+++ b/bin/sh/shell.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)shell.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*
diff --git a/bin/sh/show.c b/bin/sh/show.c
index 9807c9945d2d..43fb34c82709 100644
--- a/bin/sh/show.c
+++ b/bin/sh/show.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/trap.c b/bin/sh/trap.c
index dde6dbc08714..f478180f4c8e 100644
--- a/bin/sh/trap.c
+++ b/bin/sh/trap.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/trap.h b/bin/sh/trap.h
index d59ee60f0d18..a588432ef882 100644
--- a/bin/sh/trap.h
+++ b/bin/sh/trap.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)trap.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
extern int pendingsigs;
diff --git a/bin/sh/var.c b/bin/sh/var.c
index 0629de8858f5..93ffce62a8fb 100644
--- a/bin/sh/var.c
+++ b/bin/sh/var.c
@@ -32,6 +32,8 @@
* 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.
+ *
+ * $Id$
*/
#ifndef lint
diff --git a/bin/sh/var.h b/bin/sh/var.h
index 92b4d0d095a1..38e61ef276c9 100644
--- a/bin/sh/var.h
+++ b/bin/sh/var.h
@@ -34,6 +34,7 @@
* SUCH DAMAGE.
*
* @(#)var.h 8.1 (Berkeley) 5/31/93
+ * $Id$
*/
/*