diff options
Diffstat (limited to 'bin/sh')
69 files changed, 71 insertions, 71 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 01c46f5499c17..9217278caec4c 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/Makefile,v 1.30 1999/09/08 15:40:43 sheldonh 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 5a0b76b7ea909..66605d2902931 100644 --- a/bin/sh/TOUR +++ b/bin/sh/TOUR @@ -1,5 +1,5 @@ # @(#)TOUR 8.1 (Berkeley) 5/31/93 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/TOUR,v 1.6 1999/08/27 23:15:07 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 2d605ec59196f..97ab764d3a251 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/alias.c,v 1.12 1999/08/27 23:15:07 peter Exp $"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/alias.h b/bin/sh/alias.h index a282a69767038..023d1b987fbe6 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/alias.h,v 1.6 1999/08/27 23:15:07 peter Exp $ */ #define ALIASINUSE 1 diff --git a/bin/sh/arith.h b/bin/sh/arith.h index c58cd3c7cb5cb..33af0b82a7b25 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/arith.h,v 1.5 1999/08/27 23:15:07 peter Exp $ */ int arith __P((char *)); diff --git a/bin/sh/arith.y b/bin/sh/arith.y index 6d5bf95ce1bc1..b2fc3c706ba96 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. * - * $FreeBSD$ + * $FreeBSD: src/bin/sh/arith.y,v 1.10 1999/08/27 23:15:08 peter 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/arith.y,v 1.10 1999/08/27 23:15:08 peter Exp $"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index 8b855bd78121f..e552b1e57b366 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. * - * $FreeBSD$ + * $FreeBSD: src/bin/sh/arith_lex.l,v 1.14 1999/08/27 23:15:08 peter Exp $ */ #ifndef lint @@ -42,7 +42,7 @@ static char sccsid[] = "@(#)arith_lex.l 8.3 (Berkeley) 5/4/95"; #endif static const char rcsid[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/arith_lex.l,v 1.14 1999/08/27 23:15:08 peter Exp $"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h index a96c4761006d6..1e4cc7006e7b7 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/bltin/bltin.h,v 1.10 1999/08/27 23:15:30 peter Exp $ */ /* diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1 index a2f57f3d80485..60c21d4b2c59c 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 -.\" $FreeBSD$ +.\" $FreeBSD: src/bin/sh/bltin/echo.1,v 1.7 1999/08/27 23:15:30 peter Exp $ .\" .Dd May 4, 1995 .Dt ECHO 1 diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c index 8ce088ad060e8..a0827ca71d6b7 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/bltin/echo.c,v 1.9 1999/08/27 23:15:31 peter Exp $ */ /* diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def index 7cdcc38683aa6..4138dae16d0a9 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 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/builtins.def,v 1.7 1999/08/27 23:15:08 peter 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 3ec8deee804f8..3a591bb26b4cf 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/cd.c,v 1.20 1999/11/29 19:10:58 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/cd.h b/bin/sh/cd.h index 078b40efe61d7..4a647b018b898 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. * - * $FreeBSD$ + * $FreeBSD: src/bin/sh/cd.h,v 1.5 1999/08/27 23:15:09 peter Exp $ */ char *getpwd __P((void)); diff --git a/bin/sh/error.c b/bin/sh/error.c index e079699d81413..5f0fb5c20a239 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/error.c,v 1.15 1999/11/29 19:10:58 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/error.h b/bin/sh/error.h index 6c58c123373dd..efc8332b66152 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/error.h,v 1.11 1999/08/27 23:15:10 peter Exp $ */ /* diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 33dec0ea7be42..32239a6c59405 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/eval.c,v 1.27 1999/12/20 13:42:59 cracauer Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/eval.h b/bin/sh/eval.h index 4f0b8988cae37..c433be87afbfd 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/eval.h,v 1.7 1999/08/27 23:15:11 peter Exp $ */ extern char *commandname; /* currently executing command */ diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 67a858b184dad..8dfa2a880e659 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/exec.c,v 1.14 1999/12/20 13:42:59 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/exec.h b/bin/sh/exec.h index bb593f0101152..9331b6e74c10d 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/exec.h,v 1.9 1999/12/20 13:42:59 cracauer Exp $ */ /* values of cmdtype */ diff --git a/bin/sh/expand.c b/bin/sh/expand.c index 00c5f09424644..74b5399fbb293 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/expand.c,v 1.31 1999/12/15 11:46:32 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/expand.h b/bin/sh/expand.h index 955b8bf424e7e..581b3c5a2bd2e 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/expand.h,v 1.9 1999/08/27 23:15:12 peter Exp $ */ struct strlist { diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv index 6e9dcff9c088a..b43e6919c89c5 100644 --- a/bin/sh/funcs/cmv +++ b/bin/sh/funcs/cmv @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)cmv 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/cmv,v 1.6 1999/08/27 23:15:33 peter Exp $ # Conditional move--don't replace an existing file. diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs index a5d3c8e7eeffc..83916f553faaf 100644 --- a/bin/sh/funcs/dirs +++ b/bin/sh/funcs/dirs @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)dirs 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/dirs,v 1.6 1999/08/27 23:15:34 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 7455571f8b982..d5ea3536884fb 100644 --- a/bin/sh/funcs/kill +++ b/bin/sh/funcs/kill @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)kill 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/kill,v 1.6 1999/08/27 23:15:34 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 7a6fc855bfc2e..d8f5ae29dad53 100644 --- a/bin/sh/funcs/login +++ b/bin/sh/funcs/login @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)login 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/login,v 1.6 1999/08/27 23:15:34 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 fd8e5d6ee5a73..cbb0b3acdcabf 100644 --- a/bin/sh/funcs/newgrp +++ b/bin/sh/funcs/newgrp @@ -33,6 +33,6 @@ # SUCH DAMAGE. # # @(#)newgrp 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/newgrp,v 1.6 1999/08/27 23:15:34 peter Exp $ newgrp() exec newgrp "$@" diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd index e0be35a13a79c..fb0d4fab159e6 100644 --- a/bin/sh/funcs/popd +++ b/bin/sh/funcs/popd @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)popd 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/popd,v 1.6 1999/08/27 23:15:35 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 d60ede2cbbccb..94325e9fae8c2 100644 --- a/bin/sh/funcs/pushd +++ b/bin/sh/funcs/pushd @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)pushd 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/pushd,v 1.6 1999/08/27 23:15:35 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 f06e12ff0575b..69817cceec459 100644 --- a/bin/sh/funcs/suspend +++ b/bin/sh/funcs/suspend @@ -33,7 +33,7 @@ # SUCH DAMAGE. # # @(#)suspend 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/funcs/suspend,v 1.6 1999/08/27 23:15:35 peter Exp $ suspend() { local - diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 798118b90a61b..4ab6efdca8bd4 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/histedit.c,v 1.13 1999/08/27 23:15:13 peter Exp $"; #endif /* not lint */ #include <sys/param.h> diff --git a/bin/sh/init.h b/bin/sh/init.h index 366b8a3f376d3..96788b581fd95 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/init.h,v 1.6 1999/08/27 23:15:13 peter Exp $ */ void init __P((void)); diff --git a/bin/sh/input.c b/bin/sh/input.c index d75dfa4d7cc37..f49f148fd9d28 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/input.c,v 1.14 1999/11/29 19:10:59 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> /* defines BUFSIZ */ diff --git a/bin/sh/input.h b/bin/sh/input.h index 16d7244cd4e75..97eaa600e70b4 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/input.h,v 1.7 1999/08/27 23:15:14 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 72a7bd2bf5740..42ef790b1ad4a 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/jobs.c,v 1.27 1999/11/29 19:11:00 cracauer Exp $"; #endif /* not lint */ #include <fcntl.h> diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index e8274b08f0ffe..e42b101327eaf 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/jobs.h,v 1.12 1999/08/27 23:15:14 peter 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 20aadd04180a2..ef431bca61b05 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/machdep.h,v 1.6 1999/08/27 23:15:15 peter Exp $ */ /* diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 826e89a31e8f4..5be370f710bae 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/mail.c,v 1.9 1999/08/27 23:15:15 peter Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mail.h b/bin/sh/mail.h index 319796b13eef9..87757ea3cc0dd 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/mail.h,v 1.6 1999/08/27 23:15:15 peter Exp $ */ void chkmail __P((int)); diff --git a/bin/sh/main.c b/bin/sh/main.c index 0587161614c9e..55d2bcf1b70c6 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/main.c,v 1.18 1999/11/29 19:11:00 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/main.h b/bin/sh/main.h index 3dc3dd77c4d70..a6573a6f895c7 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/main.h,v 1.6 1999/08/27 23:15:16 peter Exp $ */ extern int rootpid; /* pid of main shell */ diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c index b2155ffaa1d92..870ba4a8dd831 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/memalloc.c,v 1.15 1999/08/27 23:15:16 peter Exp $"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h index ab53a833e41ad..2a3611a72298f 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/memalloc.h,v 1.6 1999/08/27 23:15:17 peter Exp $ */ struct stackmark { diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index bb602f6a68af8..ffc84d39850b8 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/miscbltin.c,v 1.22 1999/10/09 20:56:06 green Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins index 89f50d279b92a..e397f0ad203a0 100755 --- a/bin/sh/mkbuiltins +++ b/bin/sh/mkbuiltins @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mkbuiltins 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/mkbuiltins,v 1.8 1999/08/27 23:15:18 peter Exp $ temp=/tmp/ka$$ havejobs=0 diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c index b8f8ffbe9cc8c..81735afaba5cb 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/mkinit.c,v 1.14 1999/11/29 19:11:00 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c index 007cb3247b2f0..3396ea9ffac16 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/mknodes.c,v 1.11 1999/11/29 19:11:01 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c index 3f7f8cbfd63dc..39f7ddc72860e 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/mksyntax.c,v 1.14 1999/12/15 11:46:32 cracauer Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mktokens b/bin/sh/mktokens index 172bb23d49680..f14dadc8b8664 100644 --- a/bin/sh/mktokens +++ b/bin/sh/mktokens @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mktokens 8.1 (Berkeley) 5/31/93 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/mktokens,v 1.6 1999/08/27 23:15:19 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 e60bf5a43d0ce..719f2625782b9 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/myhistedit.h,v 1.7 1999/08/27 23:15:19 peter Exp $ */ #include <histedit.h> diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c index 8013f7da6a7a9..f40dab6cc77e1 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/mystring.c,v 1.10 1999/08/27 23:15:20 peter Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h index 4a78bd9de5ee6..09ebb4abded4b 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/mystring.h,v 1.6 1999/08/27 23:15:20 peter Exp $ */ #include <string.h> diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat index 526cd88610d00..ca2f3d6c1ac84 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/nodes.c.pat,v 1.7 1999/08/27 23:15:20 peter Exp $ */ #include <stdlib.h> diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes index ce82a35d266fa..ecb4fbe079bb9 100644 --- a/bin/sh/nodetypes +++ b/bin/sh/nodetypes @@ -34,7 +34,7 @@ # SUCH DAMAGE. # # @(#)nodetypes 8.2 (Berkeley) 5/4/95 -# $FreeBSD$ +# $FreeBSD: src/bin/sh/nodetypes,v 1.6 1999/08/27 23:15:20 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 2bd55f5030e72..9a193f3717dc7 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/options.c,v 1.15 1999/08/27 23:15:21 peter Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/options.h b/bin/sh/options.h index e28370364df73..abaf677609cf0 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/options.h,v 1.9 1999/08/27 23:15:21 peter Exp $ */ struct shparam { diff --git a/bin/sh/output.c b/bin/sh/output.c index 82ae3803774fe..98d9473a6bcf8 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/output.c,v 1.10 1999/08/27 23:15:22 peter Exp $"; #endif /* not lint */ /* diff --git a/bin/sh/output.h b/bin/sh/output.h index f99db6b81b8bd..1657630240d36 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/output.h,v 1.8 1999/08/27 23:15:22 peter Exp $ */ #ifndef OUTPUT_INCL diff --git a/bin/sh/parser.c b/bin/sh/parser.c index 2aa2665e01599..fcbff49720a57 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/parser.c,v 1.29 2000/02/15 08:00:11 cracauer Exp $"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/parser.h b/bin/sh/parser.h index fdb2c342bbda3..60cc68556d363 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/parser.h,v 1.8 1999/08/27 23:15:23 peter Exp $ */ /* control characters in argument strings */ diff --git a/bin/sh/redir.c b/bin/sh/redir.c index 3ef30d0e01512..c390370642d7e 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/redir.c,v 1.12 1999/11/29 19:11:01 cracauer Exp $"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/redir.h b/bin/sh/redir.h index 709ed12326f5e..849e09d8f64b1 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/redir.h,v 1.7 1999/08/27 23:15:23 peter Exp $ */ /* flags passed to redirect */ diff --git a/bin/sh/sh.1 b/bin/sh/sh.1 index e0f3af9874cf7..57b074549a0f8 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 -.\" $FreeBSD$ +.\" $FreeBSD: src/bin/sh/sh.1,v 1.39 1999/12/15 16:12:32 cracauer Exp $ .\" .Dd May 5, 1995 .Dt SH 1 diff --git a/bin/sh/shell.h b/bin/sh/shell.h index 5939df776c2ab..fd48c3e4d3f28 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/shell.h,v 1.11 1999/08/27 23:15:24 peter Exp $ */ /* diff --git a/bin/sh/show.c b/bin/sh/show.c index b8c6f20b95fe0..b9163716a36ba 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/show.c,v 1.11 1999/11/29 19:11:01 cracauer Exp $"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/show.h b/bin/sh/show.h index 1b6cbbc21296b..5d0b55f3f7e46 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/show.h,v 1.7 1999/08/27 23:15:25 peter Exp $ */ void showtree __P((union node *)); diff --git a/bin/sh/trap.c b/bin/sh/trap.c index 233746e6b5fa0..fb50c57e004b4 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/trap.c,v 1.20 1999/08/27 23:15:25 peter Exp $"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/trap.h b/bin/sh/trap.h index 2140c14604996..68a39a92dbd31 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/trap.h,v 1.9 1999/08/27 23:15:26 peter Exp $ */ extern int pendingsigs; diff --git a/bin/sh/var.c b/bin/sh/var.c index 056ae6fcfe592..a455cfb9f7b18 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[] = - "$FreeBSD$"; + "$FreeBSD: src/bin/sh/var.c,v 1.15 1999/08/27 23:15:26 peter Exp $"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/var.h b/bin/sh/var.h index 1a215fc806db9..ccd0d803b41c9 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 - * $FreeBSD$ + * $FreeBSD: src/bin/sh/var.h,v 1.8 1999/08/27 23:15:26 peter Exp $ */ /* |