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 fc1afd4de939..1a88934858d3 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 $ +# $FreeBSD$ 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 e7bc2c43c7bb..5a0b76b7ea90 100644 --- a/bin/sh/TOUR +++ b/bin/sh/TOUR @@ -1,5 +1,5 @@ # @(#)TOUR 8.1 (Berkeley) 5/31/93 -# $Id$ +# $FreeBSD$ 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 a02d12b06e41..2d605ec59196 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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/alias.h b/bin/sh/alias.h index 4feb75267338..a282a6976703 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$ + * $FreeBSD$ */ #define ALIASINUSE 1 diff --git a/bin/sh/arith.h b/bin/sh/arith.h index 34eb73c19251..c58cd3c7cb5c 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$ + * $FreeBSD$ */ int arith __P((char *)); diff --git a/bin/sh/arith.y b/bin/sh/arith.y index 655ed234f0ac..6d5bf95ce1bc 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 $ + * $FreeBSD$ */ #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$"; + "$FreeBSD$"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index ef29c1222996..8b855bd78121 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 $ + * $FreeBSD$ */ #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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h index ebd035a650de..a96c4761006d 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.8 1997/02/22 13:58:58 peter Exp $ + * $FreeBSD$ */ /* diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1 index b54ce3a8268b..a2f57f3d8048 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$ +.\" $FreeBSD$ .\" .Dd May 4, 1995 .Dt ECHO 1 diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c index f0829056d57d..8ce088ad060e 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 $ + * $FreeBSD$ */ /* diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def index b34aa9cbc639..7cdcc38683aa 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 $ +# $FreeBSD$ # # 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 12e78bff5aff..ee658929c8f8 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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/cd.h b/bin/sh/cd.h index 673ccdc2f716..078b40efe61d 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 $ + * $FreeBSD$ */ char *getpwd __P((void)); diff --git a/bin/sh/error.c b/bin/sh/error.c index db0cf5d24ac5..f5dd6a689ef9 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 $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/error.h b/bin/sh/error.h index fe6e25ea191f..6c58c123373d 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 $ + * $FreeBSD$ */ /* diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 4c762bad3e56..341fbab16f06 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.19 1999/05/08 10:21:46 kris Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/eval.h b/bin/sh/eval.h index 46a6820739e3..4f0b8988cae3 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$ + * $FreeBSD$ */ extern char *commandname; /* currently executing command */ diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 30c083434caa..3bfdba5eb984 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$"; + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/exec.h b/bin/sh/exec.h index ab655ff04752..5b8e5e4657cc 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 $ + * $FreeBSD$ */ /* values of cmdtype */ diff --git a/bin/sh/expand.c b/bin/sh/expand.c index e661be656e94..c6102aaeaa3e 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.27 1999/04/21 11:52:39 cracauer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/expand.h b/bin/sh/expand.h index eec98852250e..955b8bf424e7 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 $ + * $FreeBSD$ */ struct strlist { diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv index ec67c471a115..6e9dcff9c088 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$ +# $FreeBSD$ # Conditional move--don't replace an existing file. diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs index 86984250baf2..a5d3c8e7eeff 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$ +# $FreeBSD$ # 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 f933ce303d58..7455571f8b98 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$ +# $FreeBSD$ # Convert job names to process ids and then run /bin/kill. diff --git a/bin/sh/funcs/login b/bin/sh/funcs/login index bfed5c26dbe0..7a6fc855bfc2 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$ +# $FreeBSD$ # replaces the login builtin in the BSD shell login () exec login "$@" diff --git a/bin/sh/funcs/newgrp b/bin/sh/funcs/newgrp index bc84261f7e53..fd8e5d6ee5a7 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$ +# $FreeBSD$ newgrp() exec newgrp "$@" diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd index a495dbb51e10..e0be35a13a79 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$ +# $FreeBSD$ # 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 0a50f40d4a9c..d60ede2cbbcc 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$ +# $FreeBSD$ # 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 d60614ff4a08..f06e12ff0575 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$ +# $FreeBSD$ suspend() { local - diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 1a5dd5278ac7..798118b90a61 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$"; + "$FreeBSD$"; #endif /* not lint */ #include <sys/param.h> diff --git a/bin/sh/init.h b/bin/sh/init.h index d02b50edadd6..366b8a3f376d 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$ + * $FreeBSD$ */ void init __P((void)); diff --git a/bin/sh/input.c b/bin/sh/input.c index f44749c6d799..809a335d552a 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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <stdio.h> /* defines BUFSIZ */ diff --git a/bin/sh/input.h b/bin/sh/input.h index a9f87dd5927d..16d7244cd4e7 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$ + * $FreeBSD$ */ /* PEOF (the end of file marker) is defined in syntax.h */ diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index ce1785bbe758..d33e74cc0b50 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.24 1999/04/21 11:52:39 cracauer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include <fcntl.h> diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index 4a39df2704cf..e8274b08f0ff 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 $ + * $FreeBSD$ */ /* 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 a0928958de70..20aadd04180a 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$ + * $FreeBSD$ */ /* diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 965f69dde396..826e89a31e8f 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$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mail.h b/bin/sh/mail.h index c787024c6b06..319796b13eef 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$ + * $FreeBSD$ */ void chkmail __P((int)); diff --git a/bin/sh/main.c b/bin/sh/main.c index f91f1abe60f5..3a15230e1240 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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/main.h b/bin/sh/main.h index ed3391a488ed..3dc3dd77c4d7 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$ + * $FreeBSD$ */ extern int rootpid; /* pid of main shell */ diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c index 858d567324cf..b2155ffaa1d9 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.13 1999/04/12 14:23:36 cracauer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include "shell.h" diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h index b3aec71dc255..ab53a833e41a 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$ + * $FreeBSD$ */ struct stackmark { diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index a270ac8b5ab8..24683572aab7 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.19 1999/05/08 10:21:56 kris Exp $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins index 37ebf8310360..89f50d279b92 100755 --- a/bin/sh/mkbuiltins +++ b/bin/sh/mkbuiltins @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mkbuiltins 8.2 (Berkeley) 5/4/95 -# $Id$ +# $FreeBSD$ temp=/tmp/ka$$ havejobs=0 diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c index fc1307cabe5a..e6de2d2fb245 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$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c index f1fe5ee0dfba..615668b3733a 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$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c index 33f5ea8d9d2f..8e4ab082c712 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 $"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mktokens b/bin/sh/mktokens index 667ccf4ea2a7..172bb23d4968 100644 --- a/bin/sh/mktokens +++ b/bin/sh/mktokens @@ -35,7 +35,7 @@ # SUCH DAMAGE. # # @(#)mktokens 8.1 (Berkeley) 5/31/93 -# $Id$ +# $FreeBSD$ # 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 3a57c97cafdf..e60bf5a43d0c 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$ + * $FreeBSD$ */ #include <histedit.h> diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c index b960bdc11c41..8013f7da6a7a 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$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h index 8471b3e566de..4a78bd9de5ee 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$ + * $FreeBSD$ */ #include <string.h> diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat index 60e5bf5c6229..526cd88610d0 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 $ + * $FreeBSD$ */ #include <stdlib.h> diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes index 4f909cfb0b81..ce82a35d266f 100644 --- a/bin/sh/nodetypes +++ b/bin/sh/nodetypes @@ -34,7 +34,7 @@ # SUCH DAMAGE. # # @(#)nodetypes 8.2 (Berkeley) 5/4/95 -# $Id$ +# $FreeBSD$ # 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 0b65645913b9..2bd55f5030e7 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$"; + "$FreeBSD$"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/options.h b/bin/sh/options.h index 907cab2a4645..e28370364df7 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 $ + * $FreeBSD$ */ struct shparam { diff --git a/bin/sh/output.c b/bin/sh/output.c index 1421b4660dac..82ae3803774f 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$"; + "$FreeBSD$"; #endif /* not lint */ /* diff --git a/bin/sh/output.h b/bin/sh/output.h index 59798198f7ba..f99db6b81b8b 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 $ + * $FreeBSD$ */ #ifndef OUTPUT_INCL diff --git a/bin/sh/parser.c b/bin/sh/parser.c index ba60254e367b..c73dbc289a67 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 $"; + "$FreeBSD$"; #endif /* not lint */ #include <stdlib.h> diff --git a/bin/sh/parser.h b/bin/sh/parser.h index 8671ecaa84eb..fdb2c342bbda 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 $ + * $FreeBSD$ */ /* control characters in argument strings */ diff --git a/bin/sh/redir.c b/bin/sh/redir.c index aa1b7c8dcf4d..79b70d05840f 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$"; + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/bin/sh/redir.h b/bin/sh/redir.h index 9db3441f3b87..709ed12326f5 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$ + * $FreeBSD$ */ /* flags passed to redirect */ diff --git a/bin/sh/sh.1 b/bin/sh/sh.1 index 66baae6a56b5..3c7e4f581f2d 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.28 1999/04/19 18:48:26 max Exp $ +.\" $FreeBSD$ .\" .Dd May 5, 1995 .Dt SH 1 diff --git a/bin/sh/shell.h b/bin/sh/shell.h index eb9b73da5cbc..5939df776c2a 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$ + * $FreeBSD$ */ /* diff --git a/bin/sh/show.c b/bin/sh/show.c index b49c14795aff..620ffa4bcfd6 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$"; + "$FreeBSD$"; #endif /* not lint */ #include <stdio.h> diff --git a/bin/sh/show.h b/bin/sh/show.h index eb278eed6e74..1b6cbbc21296 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 $ + * $FreeBSD$ */ void showtree __P((union node *)); diff --git a/bin/sh/trap.c b/bin/sh/trap.c index 2a6b88af5da2..233746e6b5fa 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.18 1999/04/01 13:27:36 cracauer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include <signal.h> diff --git a/bin/sh/trap.h b/bin/sh/trap.h index 132b6eef40db..2140c1460499 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 $ + * $FreeBSD$ */ extern int pendingsigs; diff --git a/bin/sh/var.c b/bin/sh/var.c index eea73c7d2911..056ae6fcfe59 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.13 1999/04/03 11:41:46 cracauer Exp $"; + "$FreeBSD$"; #endif /* not lint */ #include <unistd.h> diff --git a/bin/sh/var.h b/bin/sh/var.h index 42e43919bb20..1a215fc806db 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 $ + * $FreeBSD$ */ /* |