diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:30 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-01-21 00:55:30 +0000 |
| commit | a9e2dc176f709713f9565ed1711c958f0707eb36 (patch) | |
| tree | e1676cbf88d75f6982fe157cf90f1bc6a6c21e72 /bin/sh | |
| parent | 8eb115465a9db8d2a05eaf5244d6e5e8a54087c2 (diff) | |
This commit was manufactured by cvs2svn to create tagrelease/2.2.8_cvs
'RELENG_2_2_8_RELEASE'.
This commit was manufactured to restore the state of the 2.2.8-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
Diffstat (limited to 'bin/sh')
69 files changed, 71 insertions, 71 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index be4b5daa3fe2..bb26976399c3 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $Id: Makefile,v 1.15.2.2 1997/08/25 21:16:13 jkh Exp $ +# $Id: Makefile,v 1.15.2.3 1997/10/26 22:46:55 jkh Exp $ PROG= sh SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \ diff --git a/bin/sh/TOUR b/bin/sh/TOUR index be2ce752707e..85d8a02155bc 100644 --- a/bin/sh/TOUR +++ b/bin/sh/TOUR @@ -1,5 +1,5 @@ # @(#)TOUR 8.1 (Berkeley) 5/31/93 -# $Id: TOUR,v 1.5 1997/02/22 13:58:19 peter Exp $ +# $Id: TOUR,v 1.3.2.1 1998/11/03 15:57:34 cracauer 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 beef6d3d782c..2ee212cc8e5f 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: alias.c,v 1.10 1998/05/18 06:43:25 charnier Exp $"; + "$Id: alias.c,v 1.4.2.2 1998/11/03 15:57:34 cracauer Exp $"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/alias.h b/bin/sh/alias.h index 0664db240c74..02df23d63a3b 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: alias.h,v 1.5 1997/02/22 13:58:20 peter Exp $ + * $Id: alias.h,v 1.3.2.1 1998/11/03 15:57:34 cracauer Exp $ */ #define ALIASINUSE 1 diff --git a/bin/sh/arith.h b/bin/sh/arith.h index 7f5cd1e18635..23f0276144c2 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: arith.h,v 1.4 1997/02/22 13:58:20 peter Exp $ + * $Id: arith.h,v 1.2.2.1 1998/11/03 15:57:35 cracauer Exp $ */ int arith __P((char *)); diff --git a/bin/sh/arith.y b/bin/sh/arith.y index e2739d82efe5..ddc36d93bc09 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.9 1998/08/25 09:33:34 cracauer Exp $ + * $Id: arith.y,v 1.3.2.3 1998/11/03 15:57:35 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: arith.y,v 1.9 1998/08/25 09:33:34 cracauer Exp $"; + "$Id: arith.y,v 1.3.2.3 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index 89e9be2422fb..9527008ce75f 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.12 1998/08/25 09:33:34 cracauer Exp $ + * $Id: arith_lex.l,v 1.5.2.3 1998/11/03 15:57:35 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: arith_lex.l,v 1.12 1998/08/25 09:33:34 cracauer Exp $"; + "$Id: arith_lex.l,v 1.5.2.3 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h index ff79458ccd8b..34fabf1df4e9 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: bltin.h,v 1.5 1996/09/01 10:22:13 peter Exp $ + * $Id: bltin.h,v 1.5.2.1 1997/08/25 09:10:59 jkh Exp $ */ /* diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1 index c5a1b424f253..21718d030336 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: echo.1,v 1.3 1996/09/01 10:22:15 peter Exp $ +.\" $Id: echo.1,v 1.4 1996/09/03 14:16:06 peter Exp $ .\" .Dd May 4, 1995 .Dt ECHO 1 diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c index 6e6b7dfaf903..b06d799c8128 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.4 1996/09/01 10:22:16 peter Exp $ + * $Id: echo.c,v 1.4.2.1 1997/08/25 09:11:00 jkh Exp $ */ /* diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def index 65a7f8793aa9..c19052e35e86 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.6 1997/04/28 03:50:07 steve Exp $ +# $Id: builtins.def,v 1.3.2.2 1998/11/03 15:57:35 cracauer 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 1bcbcee58f21..46ed583b8f28 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.18 1998/09/06 21:01:57 tegge Exp $"; + "$Id: cd.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/cd.h b/bin/sh/cd.h index 0edef73c3a02..1d6ac6b9de44 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.4 1998/09/06 21:01:57 tegge Exp $ + * $Id: cd.h,v 1.2.2.2 1998/11/03 15:57:35 cracauer Exp $ */ char *getpwd __P((void)); diff --git a/bin/sh/error.c b/bin/sh/error.c index fc8ffeee9015..1050073eaaa7 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.13 1998/08/25 09:33:34 cracauer Exp $"; + "$Id: error.c,v 1.5.2.4 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/error.h b/bin/sh/error.h index f78e1af1018b..d8a6f04e8327 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.9 1998/08/24 19:15:48 cracauer Exp $ + * $Id: error.h,v 1.4.2.4 1998/11/03 15:57:35 cracauer Exp $ */ /* diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 657c22bce3f8..0fa67ea4d712 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: eval.c,v 1.15 1998/05/18 06:43:34 charnier Exp $"; + "$Id: eval.c,v 1.7.2.5 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/eval.h b/bin/sh/eval.h index 2afcb6c1726c..41b338cf1bcb 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: eval.h,v 1.6 1997/02/22 13:58:24 peter Exp $ + * $Id: eval.h,v 1.3.2.2 1998/11/03 15:57:35 cracauer Exp $ */ extern char *commandname; /* currently executing command */ diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 4ba8a091bf1c..fd8b89156a93 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: exec.c,v 1.12 1998/05/18 06:43:37 charnier Exp $"; + "$Id: exec.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/exec.h b/bin/sh/exec.h index 2fda523cbc6b..acf1daf8c6f1 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.7 1997/04/28 03:08:38 steve Exp $ + * $Id: exec.h,v 1.3.2.2 1998/11/03 15:57:35 cracauer Exp $ */ /* values of cmdtype */ diff --git a/bin/sh/expand.c b/bin/sh/expand.c index eb11e3789edc..1d394392cfa8 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.24 1998/09/13 19:24:57 tegge Exp $"; + "$Id: expand.c,v 1.11.2.6 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/expand.h b/bin/sh/expand.h index cbf62c94b75d..f0357e4ef0ed 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.7 1998/09/13 19:24:57 tegge Exp $ + * $Id: expand.h,v 1.3.2.1 1998/11/03 15:57:35 cracauer Exp $ */ struct strlist { diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv index f988753e3004..669a9e243e94 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: cmv,v 1.2 1994/09/24 02:58:33 davidg Exp $ +# $Id: cmv,v 1.3 1996/09/01 10:22:21 peter Exp $ # Conditional move--don't replace an existing file. diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs index e9146d33f45f..328281432bb1 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: dirs,v 1.2 1994/09/24 02:58:34 davidg Exp $ +# $Id: dirs,v 1.3 1996/09/01 10:22:23 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 4de6d8f2f265..6bcaa5eae755 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: kill,v 1.2 1994/09/24 02:58:36 davidg Exp $ +# $Id: kill,v 1.3 1996/09/01 10:22:25 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 52f41f1cf351..7af85fc18da0 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: login,v 1.2 1994/09/24 02:58:38 davidg Exp $ +# $Id: login,v 1.3 1996/09/01 10:22:27 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 ba538fa41bd4..1a5bbfe42ddc 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: newgrp,v 1.2 1994/09/24 02:58:40 davidg Exp $ +# $Id: newgrp,v 1.3 1996/09/01 10:22:29 peter Exp $ newgrp() exec newgrp "$@" diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd index f39a7103ab68..1bb422930909 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: popd,v 1.2 1994/09/24 02:58:41 davidg Exp $ +# $Id: popd,v 1.3 1996/09/01 10:22:32 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 a82371322202..856e3c8367a8 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: pushd,v 1.2 1994/09/24 02:58:43 davidg Exp $ +# $Id: pushd,v 1.3 1996/09/01 10:22:34 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 e68564efb11f..6c12eb8ba699 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: suspend,v 1.2 1994/09/24 02:58:44 davidg Exp $ +# $Id: suspend,v 1.3 1996/09/01 10:22:36 peter Exp $ suspend() { local - diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 8f641535e925..98891df2a7f2 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: histedit.c,v 1.12 1998/05/18 06:43:42 charnier Exp $"; + "$Id: histedit.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <sys/param.h> diff --git a/bin/sh/init.h b/bin/sh/init.h index 4413473555ff..bb65802e75b5 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: init.h,v 1.5 1997/02/22 13:58:27 peter Exp $ + * $Id: init.h,v 1.3.2.1 1998/11/03 15:57:35 cracauer Exp $ */ void init __P((void)); diff --git a/bin/sh/input.c b/bin/sh/input.c index 48156f4618ae..b7a4bab31f9c 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: input.c,v 1.11 1998/05/18 06:43:45 charnier Exp $"; + "$Id: input.c,v 1.6.2.2 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> /* defines BUFSIZ */ diff --git a/bin/sh/input.h b/bin/sh/input.h index b5ed3c0d580b..a1a890a2663c 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: input.h,v 1.6 1997/02/22 13:58:28 peter Exp $ + * $Id: input.h,v 1.3.2.2 1998/11/03 15:57:35 cracauer 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 8e8e13014be7..cf82cf34e581 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.23 1998/09/08 13:16:52 cracauer Exp $"; + "$Id: jobs.c,v 1.8.2.7 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <fcntl.h> diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index 5c0bdabcf935..09b193c0615b 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.10 1998/09/10 22:09:11 cracauer Exp $ + * $Id: jobs.h,v 1.3.2.5 1998/11/03 15:57:35 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 8c1ccd44302d..5973eb44fece 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: machdep.h,v 1.5 1997/02/22 13:58:30 peter Exp $ + * $Id: machdep.h,v 1.3.2.1 1998/11/03 15:57:35 cracauer Exp $ */ /* diff --git a/bin/sh/mail.c b/bin/sh/mail.c index f3deb410f0f9..4993197089fc 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: mail.c,v 1.8 1998/05/18 06:43:50 charnier Exp $"; + "$Id: mail.c,v 1.3.2.2 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mail.h b/bin/sh/mail.h index 622998dc1a60..4055b09777c3 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: mail.h,v 1.5 1997/02/22 13:58:33 peter Exp $ + * $Id: mail.h,v 1.3.2.1 1998/11/03 15:57:35 cracauer Exp $ */ void chkmail __P((int)); diff --git a/bin/sh/main.c b/bin/sh/main.c index 2116d0bb14a3..e7ec4cd37ff3 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: main.c,v 1.15 1998/05/18 06:43:52 charnier Exp $"; + "$Id: main.c,v 1.9.2.3 1998/11/03 15:57:35 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/main.h b/bin/sh/main.h index 8b132b2f7140..3cf451f503f3 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: main.h,v 1.5 1997/02/22 13:58:34 peter Exp $ + * $Id: main.h,v 1.3.2.1 1998/11/03 15:57:36 cracauer Exp $ */ extern int rootpid; /* pid of main shell */ diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c index 414f3968464a..7180fe933a6c 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.12 1998/09/13 19:24:57 tegge Exp $"; + "$Id: memalloc.c,v 1.4.2.3 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h index e43e7461a21d..4d05537d2e0d 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: memalloc.h,v 1.5 1997/02/22 13:58:35 peter Exp $ + * $Id: memalloc.h,v 1.3.2.1 1998/11/03 15:57:36 cracauer Exp $ */ struct stackmark { diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index b9f0bbdc61d6..baa92357ceb0 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.17 1998/08/25 09:33:34 cracauer Exp $"; + "$Id: miscbltin.c,v 1.8.2.4 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins index 75c73b5fe97c..4c60efc31e09 100755 --- a/bin/sh/mkbuiltins +++ b/bin/sh/mkbuiltins @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mkbuiltins 8.2 (Berkeley) 5/4/95 -# $Id: mkbuiltins,v 1.7 1997/02/22 13:58:36 peter Exp $ +# $Id: mkbuiltins,v 1.5.2.1 1998/11/03 15:57:36 cracauer Exp $ temp=/tmp/ka$$ havejobs=0 diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c index fd5dcc43cd76..4195069e8684 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: mkinit.c,v 1.12 1998/05/18 06:44:00 charnier Exp $"; + "$Id: mkinit.c,v 1.6.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c index 0d6b3bd4c47f..c232172a54ca 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: mknodes.c,v 1.9 1998/05/18 06:44:01 charnier Exp $"; + "$Id: mknodes.c,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c index ed081a38e431..91034644c4fc 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.12 1998/09/06 21:13:09 tegge Exp $"; + "$Id: mksyntax.c,v 1.6.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mktokens b/bin/sh/mktokens index 31fb579e7540..2a2d35b06430 100644 --- a/bin/sh/mktokens +++ b/bin/sh/mktokens @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mktokens 8.1 (Berkeley) 5/31/93 -# $Id: mktokens,v 1.5 1997/02/22 13:58:37 peter Exp $ +# $Id: mktokens,v 1.3.2.1 1998/11/03 15:57:36 cracauer 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 6e0856f604c5..17ff482d5a8a 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: myhistedit.h,v 1.6 1997/02/22 13:58:38 peter Exp $ + * $Id: myhistedit.h,v 1.3.2.2 1998/11/03 15:57:36 cracauer Exp $ */ #include <histedit.h> diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c index 403456769ec5..7298765781ad 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: mystring.c,v 1.9 1998/05/18 06:44:06 charnier Exp $"; + "$Id: mystring.c,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h index a473dcb29e3b..97772808850e 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: mystring.h,v 1.5 1997/02/22 13:58:39 peter Exp $ + * $Id: mystring.h,v 1.3.2.1 1998/11/03 15:57:36 cracauer Exp $ */ #include <string.h> diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat index 56b12fe2b653..a5c63abb8727 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.6 1997/04/28 03:14:04 steve Exp $ + * $Id: nodes.c.pat,v 1.3.2.2 1998/11/03 15:57:36 cracauer Exp $ */ #include <stdlib.h> diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes index 05d8256e7d63..d9946b6e303b 100644 --- a/bin/sh/nodetypes +++ b/bin/sh/nodetypes @@ -34,7 +34,7 @@ # SUCH DAMAGE. # # @(#)nodetypes 8.2 (Berkeley) 5/4/95 -# $Id: nodetypes,v 1.5 1997/02/22 13:58:39 peter Exp $ +# $Id: nodetypes,v 1.3.2.1 1998/11/03 15:57:36 cracauer 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 8fa3a2916513..88866f31a658 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: options.c,v 1.14 1998/05/18 06:44:08 charnier Exp $"; + "$Id: options.c,v 1.8.2.3 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/options.h b/bin/sh/options.h index e33157f28b17..4e08e66a56a8 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: options.h,v 1.7 1997/02/22 13:58:40 peter Exp $ + * $Id: options.h,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $ */ struct shparam { diff --git a/bin/sh/output.c b/bin/sh/output.c index 37d24fc4e562..2796ff6908f9 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: output.c,v 1.9 1998/05/18 06:44:10 charnier Exp $"; + "$Id: output.c,v 1.4.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/output.h b/bin/sh/output.h index 19ad026a928b..53a9086c90d5 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.7 1997/04/28 03:06:38 steve Exp $ + * $Id: output.h,v 1.3.2.2 1998/11/03 15:57:36 cracauer Exp $ */ #ifndef OUTPUT_INCL diff --git a/bin/sh/parser.c b/bin/sh/parser.c index f07b86bc7bae..79daa81afdc9 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.24 1998/09/13 19:24:57 tegge Exp $"; + "$Id: parser.c,v 1.16.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/parser.h b/bin/sh/parser.h index 4f391714bd8e..5d25c8b54bc2 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.7 1998/09/06 21:13:09 tegge Exp $ + * $Id: parser.h,v 1.3.2.2 1998/11/03 15:57:36 cracauer Exp $ */ /* control characters in argument strings */ diff --git a/bin/sh/redir.c b/bin/sh/redir.c index 6290ce2cf579..2cc722995f63 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: redir.c,v 1.10 1998/05/18 06:44:14 charnier Exp $"; + "$Id: redir.c,v 1.5.2.2 1998/11/03 15:57:36 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/redir.h b/bin/sh/redir.h index b1c2dbba7d07..1919d4ad3e8f 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: redir.h,v 1.6 1997/02/22 13:58:43 peter Exp $ + * $Id: redir.h,v 1.3.2.2 1998/11/03 15:57:36 cracauer Exp $ */ /* flags passed to redirect */ diff --git a/bin/sh/sh.1 b/bin/sh/sh.1 index 5f166ae9f153..dd86e3e67f8f 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.21 1998/07/30 04:47:56 jkoshy Exp $ +.\" $Id: sh.1,v 1.9.2.12 1998/11/03 15:57:36 cracauer Exp $ .\" .Dd May 5, 1995 .Dt SH 1 diff --git a/bin/sh/shell.h b/bin/sh/shell.h index eaae685903f1..da537b240be6 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: shell.h,v 1.10 1997/02/22 13:58:45 peter Exp $ + * $Id: shell.h,v 1.6.2.2 1998/11/03 15:57:37 cracauer Exp $ */ /* diff --git a/bin/sh/show.c b/bin/sh/show.c index c0934a0faebc..55b4df5bb134 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: show.c,v 1.9 1998/05/18 06:44:19 charnier Exp $"; + "$Id: show.c,v 1.4.2.2 1998/11/03 15:57:37 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/show.h b/bin/sh/show.h index 95ec062e035c..cecffbc6971e 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.6 1997/04/28 03:17:51 steve Exp $ + * $Id: show.h,v 1.2.2.2 1998/11/03 15:57:37 cracauer Exp $ */ void showtree __P((union node *)); diff --git a/bin/sh/trap.c b/bin/sh/trap.c index 9203e34145a4..929602f8f14f 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.17 1998/09/10 22:09:11 cracauer Exp $"; + "$Id: trap.c,v 1.4.2.7 1998/11/03 15:57:37 cracauer Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/trap.h b/bin/sh/trap.h index 0fd545063e49..b6f331bcac8f 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.8 1998/08/24 10:20:37 cracauer Exp $ + * $Id: trap.h,v 1.3.2.4 1998/11/03 15:57:37 cracauer Exp $ */ extern int pendingsigs; diff --git a/bin/sh/var.c b/bin/sh/var.c index b792539496ab..94fcf6da3990 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: var.c,v 1.12 1998/05/18 06:44:24 charnier Exp $"; + "$Id: var.c,v 1.6.2.2 1998/11/03 15:57:37 cracauer Exp $"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/var.h b/bin/sh/var.h index 93fff0a6e0f6..deeadd7ecfc8 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.7 1998/09/06 21:13:09 tegge Exp $ + * $Id: var.h,v 1.3.2.2 1998/11/03 15:57:37 cracauer Exp $ */ /* |
