summaryrefslogtreecommitdiff
path: root/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/Makefile2
-rw-r--r--bin/sh/TOUR2
-rw-r--r--bin/sh/alias.c2
-rw-r--r--bin/sh/alias.h2
-rw-r--r--bin/sh/arith.h2
-rw-r--r--bin/sh/arith.y4
-rw-r--r--bin/sh/arith_lex.l4
-rw-r--r--bin/sh/bltin/bltin.h2
-rw-r--r--bin/sh/bltin/echo.12
-rw-r--r--bin/sh/bltin/echo.c2
-rw-r--r--bin/sh/builtins.def2
-rw-r--r--bin/sh/cd.c2
-rw-r--r--bin/sh/cd.h2
-rw-r--r--bin/sh/error.c2
-rw-r--r--bin/sh/error.h2
-rw-r--r--bin/sh/eval.c2
-rw-r--r--bin/sh/eval.h2
-rw-r--r--bin/sh/exec.c2
-rw-r--r--bin/sh/exec.h2
-rw-r--r--bin/sh/expand.c2
-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/kill2
-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.c2
-rw-r--r--bin/sh/init.h2
-rw-r--r--bin/sh/input.c2
-rw-r--r--bin/sh/input.h2
-rw-r--r--bin/sh/jobs.c2
-rw-r--r--bin/sh/jobs.h2
-rw-r--r--bin/sh/machdep.h2
-rw-r--r--bin/sh/mail.c2
-rw-r--r--bin/sh/mail.h2
-rw-r--r--bin/sh/main.c2
-rw-r--r--bin/sh/main.h2
-rw-r--r--bin/sh/memalloc.c2
-rw-r--r--bin/sh/memalloc.h2
-rw-r--r--bin/sh/miscbltin.c2
-rwxr-xr-xbin/sh/mkbuiltins2
-rw-r--r--bin/sh/mkinit.c2
-rw-r--r--bin/sh/mknodes.c2
-rw-r--r--bin/sh/mksyntax.c2
-rw-r--r--bin/sh/mktokens2
-rw-r--r--bin/sh/myhistedit.h2
-rw-r--r--bin/sh/mystring.c2
-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.c2
-rw-r--r--bin/sh/options.h2
-rw-r--r--bin/sh/output.c2
-rw-r--r--bin/sh/output.h2
-rw-r--r--bin/sh/parser.c2
-rw-r--r--bin/sh/parser.h2
-rw-r--r--bin/sh/redir.c2
-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.c2
-rw-r--r--bin/sh/show.h2
-rw-r--r--bin/sh/trap.c2
-rw-r--r--bin/sh/trap.h2
-rw-r--r--bin/sh/var.c2
-rw-r--r--bin/sh/var.h2
69 files changed, 71 insertions, 71 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index fc1afd4de9391..ab631d0fe5f8e 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.4 (Berkeley) 5/5/95
-# $Id: Makefile,v 1.27 1998/05/06 15:33:59 bde Exp $
+# $Id: Makefile,v 1.28 1998/07/07 01:06:58 bde Exp $
PROG= sh
SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
diff --git a/bin/sh/TOUR b/bin/sh/TOUR
index e7bc2c43c7bb6..be2ce752707ea 100644
--- a/bin/sh/TOUR
+++ b/bin/sh/TOUR
@@ -1,5 +1,5 @@
# @(#)TOUR 8.1 (Berkeley) 5/31/93
-# $Id$
+# $Id: TOUR,v 1.5 1997/02/22 13:58:19 peter Exp $
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 9ef862bef45bb..beef6d3d782c3 100644
--- a/bin/sh/alias.c
+++ b/bin/sh/alias.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: alias.c,v 1.10 1998/05/18 06:43:25 charnier Exp $";
#endif /* not lint */
#include <stdlib.h>
diff --git a/bin/sh/alias.h b/bin/sh/alias.h
index 4feb75267338e..0664db240c742 100644
--- a/bin/sh/alias.h
+++ b/bin/sh/alias.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)alias.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: alias.h,v 1.5 1997/02/22 13:58:20 peter Exp $
*/
#define ALIASINUSE 1
diff --git a/bin/sh/arith.h b/bin/sh/arith.h
index 34eb73c192515..7f5cd1e186353 100644
--- a/bin/sh/arith.h
+++ b/bin/sh/arith.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)arith.h 1.1 (Berkeley) 5/4/95
- * $Id$
+ * $Id: arith.h,v 1.4 1997/02/22 13:58:20 peter Exp $
*/
int arith __P((char *));
diff --git a/bin/sh/arith.y b/bin/sh/arith.y
index 655ed234f0acf..e2739d82efe53 100644
--- a/bin/sh/arith.y
+++ b/bin/sh/arith.y
@@ -88,7 +88,7 @@ expr: ARITH_LPAREN expr ARITH_RPAREN = { $$ = $2; }
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: arith.y,v 1.8 1998/08/24 10:20:36 cracauer Exp $
+ * $Id: arith.y,v 1.9 1998/08/25 09:33:34 cracauer Exp $
*/
#ifndef lint
@@ -96,7 +96,7 @@ expr: ARITH_LPAREN expr ARITH_RPAREN = { $$ = $2; }
static char sccsid[] = "@(#)arith.y 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: arith.y,v 1.9 1998/08/25 09:33:34 cracauer Exp $";
#endif /* not lint */
#include "shell.h"
diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l
index b5ca746d9fce8..89e9be2422fb5 100644
--- a/bin/sh/arith_lex.l
+++ b/bin/sh/arith_lex.l
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: arith_lex.l,v 1.11 1998/08/24 10:20:36 cracauer Exp $
+ * $Id: arith_lex.l,v 1.12 1998/08/25 09:33:34 cracauer Exp $
*/
#ifndef lint
@@ -42,7 +42,7 @@
static char sccsid[] = "@(#)arith_lex.l 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: arith_lex.l,v 1.12 1998/08/25 09:33:34 cracauer Exp $";
#endif /* not lint */
#include <unistd.h>
diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h
index a50d55cb3d9e7..abcbffbedcfa7 100644
--- a/bin/sh/bltin/bltin.h
+++ b/bin/sh/bltin/bltin.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)bltin.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: bltin.h,v 1.8 1997/02/22 13:58:58 peter Exp $
*/
/*
diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1
index b54ce3a8268ba..b711e8eaf598c 100644
--- a/bin/sh/bltin/echo.1
+++ b/bin/sh/bltin/echo.1
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)echo.1 8.2 (Berkeley) 5/4/95
-.\" $Id$
+.\" $Id: echo.1,v 1.6 1997/02/22 13:58:59 peter Exp $
.\"
.Dd May 4, 1995
.Dt ECHO 1
diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c
index f0829056d57d2..a02d6fbe34da2 100644
--- a/bin/sh/bltin/echo.c
+++ b/bin/sh/bltin/echo.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)echo.c 8.2 (Berkeley) 5/4/95
- * $Id: echo.c,v 1.7 1997/02/22 13:58:59 peter Exp $
+ * $Id: echo.c,v 1.8 1997/04/28 03:06:52 steve Exp $
*/
/*
diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def
index b34aa9cbc6390..65a7f8793aa92 100644
--- a/bin/sh/builtins.def
+++ b/bin/sh/builtins.def
@@ -35,7 +35,7 @@
# SUCH DAMAGE.
#
# @(#)builtins.def 8.4 (Berkeley) 5/4/95
-# $Id: builtins.def,v 1.5 1997/02/22 13:58:22 peter Exp $
+# $Id: builtins.def,v 1.6 1997/04/28 03:50:07 steve Exp $
#
# 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 12e78bff5affd..1bcbcee58f212 100644
--- a/bin/sh/cd.c
+++ b/bin/sh/cd.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: cd.c,v 1.17 1998/05/18 06:43:30 charnier Exp $";
+ "$Id: cd.c,v 1.18 1998/09/06 21:01:57 tegge Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/sh/cd.h b/bin/sh/cd.h
index 673ccdc2f716a..0edef73c3a02d 100644
--- a/bin/sh/cd.h
+++ b/bin/sh/cd.h
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: cd.h,v 1.3 1997/12/29 00:00:10 alex Exp $
+ * $Id: cd.h,v 1.4 1998/09/06 21:01:57 tegge Exp $
*/
char *getpwd __P((void));
diff --git a/bin/sh/error.c b/bin/sh/error.c
index db0cf5d24ac5f..fc8ffeee90156 100644
--- a/bin/sh/error.c
+++ b/bin/sh/error.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)error.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: error.c,v 1.12 1998/08/24 19:15:48 cracauer Exp $";
+ "$Id: error.c,v 1.13 1998/08/25 09:33:34 cracauer Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/error.h b/bin/sh/error.h
index eed9c9d3aa679..f78e1af1018b0 100644
--- a/bin/sh/error.h
+++ b/bin/sh/error.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)error.h 8.2 (Berkeley) 5/4/95
- * $Id: error.h,v 1.8 1998/08/24 10:20:36 cracauer Exp $
+ * $Id: error.h,v 1.9 1998/08/24 19:15:48 cracauer Exp $
*/
/*
diff --git a/bin/sh/eval.c b/bin/sh/eval.c
index 427b2bca51d70..657c22bce3f81 100644
--- a/bin/sh/eval.c
+++ b/bin/sh/eval.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)eval.c 8.9 (Berkeley) 6/8/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: eval.c,v 1.15 1998/05/18 06:43:34 charnier Exp $";
#endif /* not lint */
#include <signal.h>
diff --git a/bin/sh/eval.h b/bin/sh/eval.h
index 46a6820739e3d..2afcb6c1726c3 100644
--- a/bin/sh/eval.h
+++ b/bin/sh/eval.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)eval.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: eval.h,v 1.6 1997/02/22 13:58:24 peter Exp $
*/
extern char *commandname; /* currently executing command */
diff --git a/bin/sh/exec.c b/bin/sh/exec.c
index 30c083434caaa..4ba8a091bf1c0 100644
--- a/bin/sh/exec.c
+++ b/bin/sh/exec.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)exec.c 8.4 (Berkeley) 6/8/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: exec.c,v 1.12 1998/05/18 06:43:37 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/sh/exec.h b/bin/sh/exec.h
index ab655ff047522..2fda523cbc6ba 100644
--- a/bin/sh/exec.h
+++ b/bin/sh/exec.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)exec.h 8.3 (Berkeley) 6/8/95
- * $Id: exec.h,v 1.6 1997/02/22 13:58:25 peter Exp $
+ * $Id: exec.h,v 1.7 1997/04/28 03:08:38 steve Exp $
*/
/* values of cmdtype */
diff --git a/bin/sh/expand.c b/bin/sh/expand.c
index 757ff3ad4f686..eb11e3789edcc 100644
--- a/bin/sh/expand.c
+++ b/bin/sh/expand.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)expand.c 8.5 (Berkeley) 5/15/95";
#endif
static const char rcsid[] =
- "$Id: expand.c,v 1.23 1998/09/06 21:13:09 tegge Exp $";
+ "$Id: expand.c,v 1.24 1998/09/13 19:24:57 tegge Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/sh/expand.h b/bin/sh/expand.h
index 18c16630b580f..cbf62c94b75d1 100644
--- a/bin/sh/expand.h
+++ b/bin/sh/expand.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)expand.h 8.2 (Berkeley) 5/4/95
- * $Id: expand.h,v 1.6 1998/09/06 21:13:09 tegge Exp $
+ * $Id: expand.h,v 1.7 1998/09/13 19:24:57 tegge Exp $
*/
struct strlist {
diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv
index ec67c471a1157..9141fa34ef85a 100644
--- a/bin/sh/funcs/cmv
+++ b/bin/sh/funcs/cmv
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)cmv 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: cmv,v 1.5 1997/02/22 13:59:01 peter Exp $
# Conditional move--don't replace an existing file.
diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs
index 86984250baf29..eecbc7821fbaa 100644
--- a/bin/sh/funcs/dirs
+++ b/bin/sh/funcs/dirs
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)dirs 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: dirs,v 1.5 1997/02/22 13:59:02 peter Exp $
# 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 f933ce303d582..04863bd0dabd1 100644
--- a/bin/sh/funcs/kill
+++ b/bin/sh/funcs/kill
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)kill 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: kill,v 1.5 1997/02/22 13:59:03 peter Exp $
# Convert job names to process ids and then run /bin/kill.
diff --git a/bin/sh/funcs/login b/bin/sh/funcs/login
index bfed5c26dbe01..0527090c7293a 100644
--- a/bin/sh/funcs/login
+++ b/bin/sh/funcs/login
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)login 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: login,v 1.5 1997/02/22 13:59:03 peter Exp $
# replaces the login builtin in the BSD shell
login () exec login "$@"
diff --git a/bin/sh/funcs/newgrp b/bin/sh/funcs/newgrp
index bc84261f7e533..ce005b142d0e7 100644
--- a/bin/sh/funcs/newgrp
+++ b/bin/sh/funcs/newgrp
@@ -33,6 +33,6 @@
# SUCH DAMAGE.
#
# @(#)newgrp 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: newgrp,v 1.5 1997/02/22 13:59:04 peter Exp $
newgrp() exec newgrp "$@"
diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd
index a495dbb51e10f..797a40f837f17 100644
--- a/bin/sh/funcs/popd
+++ b/bin/sh/funcs/popd
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)popd 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: popd,v 1.5 1997/02/22 13:59:04 peter Exp $
# 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 0a50f40d4a9cf..fee39909ea39d 100644
--- a/bin/sh/funcs/pushd
+++ b/bin/sh/funcs/pushd
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)pushd 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: pushd,v 1.5 1997/02/22 13:59:05 peter Exp $
# 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 d60614ff4a087..7ac6eae083e50 100644
--- a/bin/sh/funcs/suspend
+++ b/bin/sh/funcs/suspend
@@ -33,7 +33,7 @@
# SUCH DAMAGE.
#
# @(#)suspend 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: suspend,v 1.5 1997/02/22 13:59:05 peter Exp $
suspend() {
local -
diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c
index 1a5dd5278ac72..8f641535e925b 100644
--- a/bin/sh/histedit.c
+++ b/bin/sh/histedit.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)histedit.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: histedit.c,v 1.12 1998/05/18 06:43:42 charnier Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/bin/sh/init.h b/bin/sh/init.h
index d02b50edadd6c..4413473555ff6 100644
--- a/bin/sh/init.h
+++ b/bin/sh/init.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)init.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: init.h,v 1.5 1997/02/22 13:58:27 peter Exp $
*/
void init __P((void));
diff --git a/bin/sh/input.c b/bin/sh/input.c
index 1c9f2ad7c6841..48156f4618ae9 100644
--- a/bin/sh/input.c
+++ b/bin/sh/input.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: input.c,v 1.11 1998/05/18 06:43:45 charnier Exp $";
#endif /* not lint */
#include <stdio.h> /* defines BUFSIZ */
diff --git a/bin/sh/input.h b/bin/sh/input.h
index a9f87dd5927db..b5ed3c0d580bb 100644
--- a/bin/sh/input.h
+++ b/bin/sh/input.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)input.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: input.h,v 1.6 1997/02/22 13:58:28 peter Exp $
*/
/* PEOF (the end of file marker) is defined in syntax.h */
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index c08758e62e3d1..8e8e13014be7e 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: jobs.c,v 1.22 1998/08/25 09:33:34 cracauer Exp $";
+ "$Id: jobs.c,v 1.23 1998/09/08 13:16:52 cracauer Exp $";
#endif /* not lint */
#include <fcntl.h>
diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h
index e637eae3781c6..5c0bdabcf935b 100644
--- a/bin/sh/jobs.h
+++ b/bin/sh/jobs.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)jobs.h 8.2 (Berkeley) 5/4/95
- * $Id: jobs.h,v 1.9 1998/09/08 13:16:52 cracauer Exp $
+ * $Id: jobs.h,v 1.10 1998/09/10 22:09:11 cracauer Exp $
*/
/* 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 a0928958de70a..8c1ccd44302d2 100644
--- a/bin/sh/machdep.h
+++ b/bin/sh/machdep.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)machdep.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: machdep.h,v 1.5 1997/02/22 13:58:30 peter Exp $
*/
/*
diff --git a/bin/sh/mail.c b/bin/sh/mail.c
index 965f69dde3967..f3deb410f0f9a 100644
--- a/bin/sh/mail.c
+++ b/bin/sh/mail.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)mail.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: mail.c,v 1.8 1998/05/18 06:43:50 charnier Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mail.h b/bin/sh/mail.h
index c787024c6b067..622998dc1a607 100644
--- a/bin/sh/mail.h
+++ b/bin/sh/mail.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)mail.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: mail.h,v 1.5 1997/02/22 13:58:33 peter Exp $
*/
void chkmail __P((int));
diff --git a/bin/sh/main.c b/bin/sh/main.c
index 3cd49d23fbf8b..2116d0bb14a3f 100644
--- a/bin/sh/main.c
+++ b/bin/sh/main.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/28/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: main.c,v 1.15 1998/05/18 06:43:52 charnier Exp $";
#endif /* not lint */
#include <stdio.h>
diff --git a/bin/sh/main.h b/bin/sh/main.h
index ed3391a488edb..8b132b2f7140e 100644
--- a/bin/sh/main.h
+++ b/bin/sh/main.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)main.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: main.h,v 1.5 1997/02/22 13:58:34 peter Exp $
*/
extern int rootpid; /* pid of main shell */
diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c
index c40eadd075e53..414f3968464a2 100644
--- a/bin/sh/memalloc.c
+++ b/bin/sh/memalloc.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)memalloc.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: memalloc.c,v 1.11 1998/09/10 14:51:06 cracauer Exp $";
+ "$Id: memalloc.c,v 1.12 1998/09/13 19:24:57 tegge Exp $";
#endif /* not lint */
#include "shell.h"
diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h
index b3aec71dc2559..e43e7461a21d8 100644
--- a/bin/sh/memalloc.h
+++ b/bin/sh/memalloc.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)memalloc.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: memalloc.h,v 1.5 1997/02/22 13:58:35 peter Exp $
*/
struct stackmark {
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c
index 772a3fd17a47a..b9f0bbdc61d60 100644
--- a/bin/sh/miscbltin.c
+++ b/bin/sh/miscbltin.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)miscbltin.c 8.4 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: miscbltin.c,v 1.16 1998/08/24 10:20:36 cracauer Exp $";
+ "$Id: miscbltin.c,v 1.17 1998/08/25 09:33:34 cracauer Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index 37ebf83103605..75c73b5fe97cc 100755
--- a/bin/sh/mkbuiltins
+++ b/bin/sh/mkbuiltins
@@ -35,7 +35,7 @@
# SUCH DAMAGE.
#
# @(#)mkbuiltins 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: mkbuiltins,v 1.7 1997/02/22 13:58:36 peter Exp $
temp=/tmp/ka$$
havejobs=0
diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c
index fc1307cabe5a2..fd5dcc43cd76e 100644
--- a/bin/sh/mkinit.c
+++ b/bin/sh/mkinit.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)mkinit.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: mkinit.c,v 1.12 1998/05/18 06:44:00 charnier Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c
index f1fe5ee0dfba8..0d6b3bd4c47fe 100644
--- a/bin/sh/mknodes.c
+++ b/bin/sh/mknodes.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)mknodes.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: mknodes.c,v 1.9 1998/05/18 06:44:01 charnier Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c
index 33f5ea8d9d2f0..ed081a38e431e 100644
--- a/bin/sh/mksyntax.c
+++ b/bin/sh/mksyntax.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)mksyntax.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id: mksyntax.c,v 1.11 1998/05/18 06:44:03 charnier Exp $";
+ "$Id: mksyntax.c,v 1.12 1998/09/06 21:13:09 tegge Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mktokens b/bin/sh/mktokens
index 667ccf4ea2a75..31fb579e75402 100644
--- a/bin/sh/mktokens
+++ b/bin/sh/mktokens
@@ -35,7 +35,7 @@
# SUCH DAMAGE.
#
# @(#)mktokens 8.1 (Berkeley) 5/31/93
-# $Id$
+# $Id: mktokens,v 1.5 1997/02/22 13:58:37 peter Exp $
# 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 3a57c97cafdfd..6e0856f604c56 100644
--- a/bin/sh/myhistedit.h
+++ b/bin/sh/myhistedit.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)myhistedit.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: myhistedit.h,v 1.6 1997/02/22 13:58:38 peter Exp $
*/
#include <histedit.h>
diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c
index b960bdc11c41f..403456769ec52 100644
--- a/bin/sh/mystring.c
+++ b/bin/sh/mystring.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)mystring.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: mystring.c,v 1.9 1998/05/18 06:44:06 charnier Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h
index 8471b3e566de5..a473dcb29e3b0 100644
--- a/bin/sh/mystring.h
+++ b/bin/sh/mystring.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)mystring.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: mystring.h,v 1.5 1997/02/22 13:58:39 peter Exp $
*/
#include <string.h>
diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat
index 60e5bf5c6229a..56b12fe2b653c 100644
--- a/bin/sh/nodes.c.pat
+++ b/bin/sh/nodes.c.pat
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)nodes.c.pat 8.2 (Berkeley) 5/4/95
- * $Id: nodes.c.pat,v 1.5 1997/02/22 13:58:39 peter Exp $
+ * $Id: nodes.c.pat,v 1.6 1997/04/28 03:14:04 steve Exp $
*/
#include <stdlib.h>
diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes
index 4f909cfb0b814..05d8256e7d634 100644
--- a/bin/sh/nodetypes
+++ b/bin/sh/nodetypes
@@ -34,7 +34,7 @@
# SUCH DAMAGE.
#
# @(#)nodetypes 8.2 (Berkeley) 5/4/95
-# $Id$
+# $Id: nodetypes,v 1.5 1997/02/22 13:58:39 peter Exp $
# 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 0b65645913b90..8fa3a2916513b 100644
--- a/bin/sh/options.c
+++ b/bin/sh/options.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: options.c,v 1.14 1998/05/18 06:44:08 charnier Exp $";
#endif /* not lint */
#include <signal.h>
diff --git a/bin/sh/options.h b/bin/sh/options.h
index 28b98192d7aae..e33157f28b170 100644
--- a/bin/sh/options.h
+++ b/bin/sh/options.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)options.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: options.h,v 1.7 1997/02/22 13:58:40 peter Exp $
*/
struct shparam {
diff --git a/bin/sh/output.c b/bin/sh/output.c
index 1421b4660dac6..37d24fc4e5621 100644
--- a/bin/sh/output.c
+++ b/bin/sh/output.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)output.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: output.c,v 1.9 1998/05/18 06:44:10 charnier Exp $";
#endif /* not lint */
/*
diff --git a/bin/sh/output.h b/bin/sh/output.h
index 59798198f7bad..19ad026a928b7 100644
--- a/bin/sh/output.h
+++ b/bin/sh/output.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)output.h 8.2 (Berkeley) 5/4/95
- * $Id: output.h,v 1.6 1997/02/22 13:58:41 peter Exp $
+ * $Id: output.h,v 1.7 1997/04/28 03:06:38 steve Exp $
*/
#ifndef OUTPUT_INCL
diff --git a/bin/sh/parser.c b/bin/sh/parser.c
index ba60254e367b6..f07b86bc7bae8 100644
--- a/bin/sh/parser.c
+++ b/bin/sh/parser.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
#endif
static const char rcsid[] =
- "$Id: parser.c,v 1.23 1998/09/06 21:13:09 tegge Exp $";
+ "$Id: parser.c,v 1.24 1998/09/13 19:24:57 tegge Exp $";
#endif /* not lint */
#include <stdlib.h>
diff --git a/bin/sh/parser.h b/bin/sh/parser.h
index 8671ecaa84eb7..4f391714bd8e7 100644
--- a/bin/sh/parser.h
+++ b/bin/sh/parser.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)parser.h 8.3 (Berkeley) 5/4/95
- * $Id: parser.h,v 1.6 1997/02/22 13:58:42 peter Exp $
+ * $Id: parser.h,v 1.7 1998/09/06 21:13:09 tegge Exp $
*/
/* control characters in argument strings */
diff --git a/bin/sh/redir.c b/bin/sh/redir.c
index aa1b7c8dcf4d4..6290ce2cf5792 100644
--- a/bin/sh/redir.c
+++ b/bin/sh/redir.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)redir.c 8.2 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: redir.c,v 1.10 1998/05/18 06:44:14 charnier Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/bin/sh/redir.h b/bin/sh/redir.h
index 9db3441f3b87d..b1c2dbba7d078 100644
--- a/bin/sh/redir.h
+++ b/bin/sh/redir.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)redir.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: redir.h,v 1.6 1997/02/22 13:58:43 peter Exp $
*/
/* flags passed to redirect */
diff --git a/bin/sh/sh.1 b/bin/sh/sh.1
index 5d99ac64a5a1f..5f166ae9f153b 100644
--- a/bin/sh/sh.1
+++ b/bin/sh/sh.1
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)sh.1 8.6 (Berkeley) 5/4/95
-.\" $Id: sh.1,v 1.20 1998/05/18 06:44:17 charnier Exp $
+.\" $Id: sh.1,v 1.21 1998/07/30 04:47:56 jkoshy Exp $
.\"
.Dd May 5, 1995
.Dt SH 1
diff --git a/bin/sh/shell.h b/bin/sh/shell.h
index eb9b73da5cbc8..eaae685903f19 100644
--- a/bin/sh/shell.h
+++ b/bin/sh/shell.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)shell.h 8.2 (Berkeley) 5/4/95
- * $Id$
+ * $Id: shell.h,v 1.10 1997/02/22 13:58:45 peter Exp $
*/
/*
diff --git a/bin/sh/show.c b/bin/sh/show.c
index b49c14795aff3..c0934a0faebc4 100644
--- a/bin/sh/show.c
+++ b/bin/sh/show.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)show.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: show.c,v 1.9 1998/05/18 06:44:19 charnier Exp $";
#endif /* not lint */
#include <stdio.h>
diff --git a/bin/sh/show.h b/bin/sh/show.h
index eb278eed6e74c..95ec062e035c7 100644
--- a/bin/sh/show.h
+++ b/bin/sh/show.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)show.h 1.1 (Berkeley) 5/4/95
- * $Id: show.h,v 1.5 1997/02/22 13:58:46 peter Exp $
+ * $Id: show.h,v 1.6 1997/04/28 03:17:51 steve Exp $
*/
void showtree __P((union node *));
diff --git a/bin/sh/trap.c b/bin/sh/trap.c
index fd359fc6d97aa..9203e34145a40 100644
--- a/bin/sh/trap.c
+++ b/bin/sh/trap.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)trap.c 8.5 (Berkeley) 6/5/95";
#endif
static const char rcsid[] =
- "$Id: trap.c,v 1.16 1998/09/10 14:51:06 cracauer Exp $";
+ "$Id: trap.c,v 1.17 1998/09/10 22:09:11 cracauer Exp $";
#endif /* not lint */
#include <signal.h>
diff --git a/bin/sh/trap.h b/bin/sh/trap.h
index 132b6eef40db4..0fd545063e493 100644
--- a/bin/sh/trap.h
+++ b/bin/sh/trap.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)trap.h 8.3 (Berkeley) 6/5/95
- * $Id: trap.h,v 1.7 1997/11/10 11:32:24 bde Exp $
+ * $Id: trap.h,v 1.8 1998/08/24 10:20:37 cracauer Exp $
*/
extern int pendingsigs;
diff --git a/bin/sh/var.c b/bin/sh/var.c
index d1f2b7669ed2b..b792539496abe 100644
--- a/bin/sh/var.c
+++ b/bin/sh/var.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: var.c,v 1.12 1998/05/18 06:44:24 charnier Exp $";
#endif /* not lint */
#include <unistd.h>
diff --git a/bin/sh/var.h b/bin/sh/var.h
index 42e43919bb202..93fff0a6e0f60 100644
--- a/bin/sh/var.h
+++ b/bin/sh/var.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)var.h 8.2 (Berkeley) 5/4/95
- * $Id: var.h,v 1.6 1997/02/22 13:58:48 peter Exp $
+ * $Id: var.h,v 1.7 1998/09/06 21:13:09 tegge Exp $
*/
/*