date and time created 88/07/22 16:08:01 by bostic
[unix-history] / usr / src / libexec / ftpd / newvers.sh
CommitLineData
f644bb55
DF
1#!/bin/sh -
2#
3# Copyright (c) 1983 Regents of the University of California.
e2071415 4# All rights reserved.
f644bb55 5#
e2071415
KB
6# Redistribution and use in source and binary forms are permitted
7# provided that this notice is preserved and that due credit is given
8# to the University of California at Berkeley. The name of the University
9# may not be used to endorse or promote products derived from this
10# software without specific prior written permission. This software
11# is provided ``as is'' without express or implied warranty.
12#
13# @(#)newvers.sh 5.2 (Berkeley) %G%
f644bb55 14#
55f2f310
SL
15if [ ! -r version ]; then echo 0 > version; fi
16touch version
17awk ' { version = $1 + 1; }\
18END { printf "char version[] = \"Version 4.%d ", version > "vers.c";\
19 printf "%d\n", version > "version"; }' < version
20echo `date`'";' >> vers.c