123132Smckusick#!/bin/sh - 223132Smckusick# 363142Sbostic# Copyright (c) 1984, 1986, 1990, 1993 463142Sbostic# The Regents of the University of California. All rights reserved. 523132Smckusick# 645763Sbostic# %sccs.include.redist.sh% 723132Smckusick# 8*67027Smckusick# @(#)newvers.sh 8.1 (Berkeley) 04/20/94 945763Sbostic 1024488Sbloomif [ ! -r version ] 1124488Sbloomthen 1237492Smckusick echo 0 > version 1324488Sbloomfi 1445763Sbostic 1517021Sbloomtouch version 1624488Sbloomv=`cat version` u=${USER-root} d=`pwd` h=`hostname` t=`date` 1757908Smckusickecho "char ostype[] = \"4.4BSD\";" > vers.c 1867026Smckusickecho "char osrelease[] = \"4.4BSD-Lite\";" >> vers.c 1957908Smckusickecho "char sccs[4] = { '@', '(', '#', ')' };" >>vers.c 2067026Smckusickecho "char version[] = \"4.4BSD-Lite #${v}: ${t}\\n ${u}@${h}:${d}\\n\";" >>vers.c 2157908Smckusick 2237492Smckusickecho `expr ${v} + 1` > version 23