use /bin/echo (from Doug Kingston <mcvax!dpk@seismo.CSS.GOV>)
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 10 Jan 1986 11:42:20 +0000 (03:42 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 10 Jan 1986 11:42:20 +0000 (03:42 -0800)
SCCS-vsn: sys/conf/newvers.sh 1.7

usr/src/sys/conf/newvers.sh

index 6f77682..f9859bf 100644 (file)
@@ -4,15 +4,15 @@
 # All rights reserved.  The Berkeley software License Agreement
 # specifies the terms and conditions for redistribution.
 #
 # All rights reserved.  The Berkeley software License Agreement
 # specifies the terms and conditions for redistribution.
 #
-#      @(#)newvers.sh  1.6 (Berkeley) %G%
+#      @(#)newvers.sh  1.7 (Berkeley) %G%
 #
 if [ ! -r version ]
 then
 #
 if [ ! -r version ]
 then
-       echo 0 > version
+       /bin/echo 0 > version
 fi
 touch version
 v=`cat version` u=${USER-root} d=`pwd` h=`hostname` t=`date`
 fi
 touch version
 v=`cat version` u=${USER-root} d=`pwd` h=`hostname` t=`date`
-( echo "char sccs[] = \"@(#)4.3 BSD #${v}: ${t} (${u}@${h}:${d})\\n\";" ;
-  echo "char version[] = \"4.3 BSD UNIX #${v}: ${t}\\n    ${u}@${h}:${d}\\n\";"
+( /bin/echo "char sccs[] = \"@(#)4.3 BSD #${v}: ${t} (${u}@${h}:${d})\\n\";" ;
+  /bin/echo "char version[] = \"4.3 BSD UNIX #${v}: ${t}\\n    ${u}@${h}:${d}\\n\";"
 ) > vers.c
 ) > vers.c
-echo `expr ${v} + 1` > version
+/bin/echo `expr ${v} + 1` > version