diff options
Diffstat (limited to 'bin/sh')
68 files changed, 68 insertions, 68 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 48905f0f18d9..9803e83eeba0 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.4 (Berkeley) 5/5/95 -# $Id: Makefile,v 1.14 1996/09/01 10:27:49 peter Exp $ +# $FreeBSD$ 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 44e84901780a..5980afbb3f40 100644 --- a/bin/sh/TOUR +++ b/bin/sh/TOUR @@ -1,5 +1,5 @@ # @(#)TOUR 8.1 (Berkeley) 5/31/93 -# $Id: TOUR,v 1.2 1994/09/24 02:57:19 davidg Exp $ +# $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 09848605fc8c..9831b4b921fd 100644 --- a/bin/sh/alias.c +++ b/bin/sh/alias.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alias.c,v 1.4 1996/09/01 10:19:26 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/alias.h b/bin/sh/alias.h index 7abaccf7ba9b..998d4032652f 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.2 1994/09/24 02:57:20 davidg Exp $ + * $FreeBSD$ */ #define ALIASINUSE 1 diff --git a/bin/sh/arith.h b/bin/sh/arith.h index 34eb73c19251..23ec9121f3fd 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 fe04ff18ce92..ef426dbcd606 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.3 1996/09/01 10:19:38 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/arith_lex.l b/bin/sh/arith_lex.l index d2b87f7c73b0..2ccb6ef4ad3c 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.6 1996/12/14 06:19:08 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h index ff79458ccd8b..fbb4123fd7f3 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 $ + * $FreeBSD$ */ /* diff --git a/bin/sh/bltin/echo.1 b/bin/sh/bltin/echo.1 index c5a1b424f253..ed3aa19ac2e9 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 $ +.\" $FreeBSD$ .\" .Dd May 4, 1995 .Dt ECHO 1 diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c index 1d78f1460e8c..17fffc05a5fc 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 $ + * $FreeBSD$ */ /* diff --git a/bin/sh/builtins.def b/bin/sh/builtins.def index c9db726d83e8..21aea3e80198 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.2 1996/09/01 10:19:44 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 b9084396bf58..4291b2458648 100644 --- a/bin/sh/cd.c +++ b/bin/sh/cd.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cd.c,v 1.11 1996/12/23 22:29:03 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/error.c b/bin/sh/error.c index cfc270db7b9c..91b490472c50 100644 --- a/bin/sh/error.c +++ b/bin/sh/error.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: error.c,v 1.5 1996/09/03 14:15:46 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/error.h b/bin/sh/error.h index 767ba66076f6..8ac64bfaa353 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.4 1996/09/03 14:15:48 peter Exp $ + * $FreeBSD$ */ /* diff --git a/bin/sh/eval.c b/bin/sh/eval.c index 1539ec0afcce..ce42ddd92f69 100644 --- a/bin/sh/eval.c +++ b/bin/sh/eval.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: eval.c,v 1.8 1996/11/12 18:35:06 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/eval.h b/bin/sh/eval.h index ceaef6db351e..c6bfc827718a 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.3 1996/09/01 10:19:59 peter Exp $ + * $FreeBSD$ */ extern char *commandname; /* currently executing command */ diff --git a/bin/sh/exec.c b/bin/sh/exec.c index 3ebdc49147d2..dc4e880d5ad3 100644 --- a/bin/sh/exec.c +++ b/bin/sh/exec.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: exec.c,v 1.6 1996/09/03 14:15:49 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/exec.h b/bin/sh/exec.h index faeb9f2f97a7..031f564e7ea5 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.3 1996/09/01 10:20:05 peter Exp $ + * $FreeBSD$ */ /* values of cmdtype */ diff --git a/bin/sh/expand.c b/bin/sh/expand.c index 833de885d94b..15fd18292384 100644 --- a/bin/sh/expand.c +++ b/bin/sh/expand.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: expand.c,v 1.12 1996/12/14 06:19:16 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/expand.h b/bin/sh/expand.h index 4d621a356711..0a47379d2047 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.2 1994/09/24 02:57:35 davidg Exp $ + * $FreeBSD$ */ struct strlist { diff --git a/bin/sh/funcs/cmv b/bin/sh/funcs/cmv index f988753e3004..9477d3faabee 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 $ +# $FreeBSD$ # Conditional move--don't replace an existing file. diff --git a/bin/sh/funcs/dirs b/bin/sh/funcs/dirs index e9146d33f45f..3e62ad75e5cb 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 $ +# $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 4de6d8f2f265..f0c22b03015b 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 $ +# $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 52f41f1cf351..3c5ab58af426 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 $ +# $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 ba538fa41bd4..46a1b560f135 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 $ +# $FreeBSD$ newgrp() exec newgrp "$@" diff --git a/bin/sh/funcs/popd b/bin/sh/funcs/popd index f39a7103ab68..1975bd0b32f1 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 $ +# $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 a82371322202..b2ba796de192 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 $ +# $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 e68564efb11f..8b09ad1b483e 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 $ +# $FreeBSD$ suspend() { local - diff --git a/bin/sh/histedit.c b/bin/sh/histedit.c index 8f40d97551de..a1fe6e6a2854 100644 --- a/bin/sh/histedit.c +++ b/bin/sh/histedit.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: histedit.c,v 1.6 1996/09/03 13:35:09 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/init.h b/bin/sh/init.h index eff47ef7893b..cbb87b2fddf0 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.2 1994/09/24 02:57:37 davidg Exp $ + * $FreeBSD$ */ void init __P((void)); diff --git a/bin/sh/input.c b/bin/sh/input.c index f8ca1da834f8..ce78357e083d 100644 --- a/bin/sh/input.c +++ b/bin/sh/input.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: input.c,v 1.6 1996/09/03 14:15:50 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/input.h b/bin/sh/input.h index e2d257133ca5..fec1be947126 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.3 1996/09/01 10:20:21 peter Exp $ + * $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 974e6dcd64b2..9514cd0cba49 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: jobs.c,v 1.9 1996/12/14 06:19:18 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index fa42549f1f8d..94aaaa32db67 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.2 1994/09/24 02:57:42 davidg 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 2f2aea045095..9436521c9b3b 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.2 1994/09/24 02:57:43 davidg Exp $ + * $FreeBSD$ */ /* diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 1470ee340419..cb70dedd10e5 100644 --- a/bin/sh/mail.c +++ b/bin/sh/mail.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mail.c,v 1.3 1996/09/01 10:20:35 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mail.h b/bin/sh/mail.h index 644d8087106c..a589683298a0 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.2 1994/09/24 02:57:45 davidg Exp $ + * $FreeBSD$ */ void chkmail __P((int)); diff --git a/bin/sh/main.c b/bin/sh/main.c index 9083e564f84d..ec4d167cdb6a 100644 --- a/bin/sh/main.c +++ b/bin/sh/main.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.10 1996/12/14 06:19:19 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/main.h b/bin/sh/main.h index 611f00ad2e2e..f48697e103c4 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.2 1994/09/24 02:57:49 davidg Exp $ + * $FreeBSD$ */ extern int rootpid; /* pid of main shell */ diff --git a/bin/sh/memalloc.c b/bin/sh/memalloc.c index 5870c9d4b48e..125aabb56a0e 100644 --- a/bin/sh/memalloc.c +++ b/bin/sh/memalloc.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: memalloc.c,v 1.4 1996/09/03 14:15:53 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/memalloc.h b/bin/sh/memalloc.h index c7f101e9b44d..96e1839a3ac0 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.2 1994/09/24 02:57:51 davidg Exp $ + * $FreeBSD$ */ struct stackmark { diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index a0c16862b1ad..4e0c329d1b7b 100644 --- a/bin/sh/miscbltin.c +++ b/bin/sh/miscbltin.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: miscbltin.c,v 1.8 1996/09/03 14:24:44 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins index 7c610d5c410f..0b5d1ea4e87f 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.4 1996/06/24 04:22:22 jkh Exp $ +# $FreeBSD$ temp=/tmp/ka$$ havejobs=0 diff --git a/bin/sh/mkinit.c b/bin/sh/mkinit.c index d27a25160d12..88400f0a1dd6 100644 --- a/bin/sh/mkinit.c +++ b/bin/sh/mkinit.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mkinit.c,v 1.6 1996/09/01 10:20:50 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mknodes.c b/bin/sh/mknodes.c index 0d7bf320124b..61dd51ee7edc 100644 --- a/bin/sh/mknodes.c +++ b/bin/sh/mknodes.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mknodes.c,v 1.4 1996/09/03 13:35:11 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c index 48b630b3bd33..133b6174f531 100644 --- a/bin/sh/mksyntax.c +++ b/bin/sh/mksyntax.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mksyntax.c,v 1.6 1996/09/01 10:20:56 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mktokens b/bin/sh/mktokens index 375ff8e99209..ccb8699f6a55 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.2 1994/09/24 02:57:58 davidg Exp $ +# $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 f0fa314caeac..18beb3c33979 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.3 1996/09/01 10:21:00 peter Exp $ + * $FreeBSD$ */ #include <histedit.h> diff --git a/bin/sh/mystring.c b/bin/sh/mystring.c index 317f9a809924..1e34a44fc6a1 100644 --- a/bin/sh/mystring.c +++ b/bin/sh/mystring.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mystring.c,v 1.4 1996/09/03 14:15:55 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/mystring.h b/bin/sh/mystring.h index a1caa065708b..8f0ad8753791 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.2 1994/09/24 02:58:00 davidg Exp $ + * $FreeBSD$ */ #include <string.h> diff --git a/bin/sh/nodes.c.pat b/bin/sh/nodes.c.pat index 739616d46568..43e014e9c833 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.2 1994/09/24 02:58:02 davidg Exp $ + * $FreeBSD$ */ #include <stdlib.h> diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes index a2b12bfaec24..171276476653 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.2 1994/09/24 02:58:03 davidg Exp $ +# $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 0b2c6c1b0032..c71ebef7eb4d 100644 --- a/bin/sh/options.c +++ b/bin/sh/options.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: options.c,v 1.9 1996/12/14 06:19:24 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/options.h b/bin/sh/options.h index abd05146b1a7..0af2257a020f 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.4 1996/10/29 03:12:49 steve Exp $ + * $FreeBSD$ */ struct shparam { diff --git a/bin/sh/output.c b/bin/sh/output.c index 0575b3603e45..249a9d1320a4 100644 --- a/bin/sh/output.c +++ b/bin/sh/output.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: output.c,v 1.4 1996/09/03 14:15:56 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/output.h b/bin/sh/output.h index 7a1957d1c1bb..30bee7be12af 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.3 1996/09/01 10:21:29 peter Exp $ + * $FreeBSD$ */ #ifndef OUTPUT_INCL diff --git a/bin/sh/parser.c b/bin/sh/parser.c index e400b4565cc0..ed909684e197 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: parser.c,v 1.16 1996/09/10 02:42:33 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/parser.h b/bin/sh/parser.h index 4280d5888495..50777eeeb129 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.3 1996/09/01 10:21:34 peter Exp $ + * $FreeBSD$ */ /* control characters in argument strings */ diff --git a/bin/sh/redir.c b/bin/sh/redir.c index 89e68d3b0437..7ed3d756f902 100644 --- a/bin/sh/redir.c +++ b/bin/sh/redir.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: redir.c,v 1.5 1996/09/01 10:21:36 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/redir.h b/bin/sh/redir.h index e6bafda85af1..ef44d87463e9 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.3 1996/09/01 10:21:37 peter Exp $ + * $FreeBSD$ */ /* flags passed to redirect */ diff --git a/bin/sh/sh.1 b/bin/sh/sh.1 index 265b38ad6248..557c630e8298 100644 --- a/bin/sh/sh.1 +++ b/bin/sh/sh.1 @@ -33,7 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sh.1 8.6 (Berkeley) 5/4/95 -.\" $Id: sh.1,v 1.9 1996/10/29 03:12:51 steve Exp $ +.\" $FreeBSD$ .\" .na .TH SH 1 diff --git a/bin/sh/shell.h b/bin/sh/shell.h index e84bd00b8e9f..9b9ec8773912 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.7 1996/12/14 06:19:30 steve Exp $ + * $FreeBSD$ */ /* diff --git a/bin/sh/show.c b/bin/sh/show.c index ab054044f0d8..60089234e4dc 100644 --- a/bin/sh/show.c +++ b/bin/sh/show.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: show.c,v 1.4 1996/09/03 14:16:00 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/show.h b/bin/sh/show.h index 3625240f0d0a..1ef1a3dff85a 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.2 1996/09/01 10:21:45 peter Exp $ + * $FreeBSD$ */ void showtree __P((union node *)); diff --git a/bin/sh/trap.c b/bin/sh/trap.c index 7fe98a3f7b0c..527aea0cc6ac 100644 --- a/bin/sh/trap.c +++ b/bin/sh/trap.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: trap.c,v 1.5 1996/12/14 06:19:32 steve Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/trap.h b/bin/sh/trap.h index e57b6f2564e2..b55aa5c3b5cc 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.3 1996/09/01 10:21:50 peter Exp $ + * $FreeBSD$ */ extern int pendingsigs; diff --git a/bin/sh/var.c b/bin/sh/var.c index 8b06645ad633..faa210974bc0 100644 --- a/bin/sh/var.c +++ b/bin/sh/var.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: var.c,v 1.6 1996/09/01 10:21:52 peter Exp $ + * $FreeBSD$ */ #ifndef lint diff --git a/bin/sh/var.h b/bin/sh/var.h index 3207dc4ec2fa..38a6273d1745 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.3 1996/09/01 10:21:54 peter Exp $ + * $FreeBSD$ */ /* |