#
# Make uniq  - GMD 11 Jan 90
#
#	if using Dillon's csh , trigger off a make of uniq by
#	typing 'source make.sh' ; it will generate date.c
#	containing the current date which will be compiled and
#	linked into uniq ( output with usage () )
# 
#
#
echo  "char *MakeDate[] = \"\\" >date.c
date | input a 
echo $a\" ";" >>date.c
date
#
#	for the non-cognoscenti , the above will create date.c
#	containing ( for example ) the equivalent of the following string  :-
#
#	char *MakeDate[] = "Thursday 11-Jan-90 22:40:27" ;
#
#
make uniq

