Gaffaweb > Love & Anger > 1986-04 > [ Date Index | Thread Index ]
[Date Prev] [Date Next] [Thread Prev] [Thread Next]


KB statistics program

From: ll-xn!rochester!ur-helheim!badri (Badri Lokanathan)
Date: Mon, 24 Mar 86 08:32:58 EST
Subject: KB statistics program

Here is a little shell script for all those who need Kate Bush
statistics at their finger tips. I have taken these statistics
from postings by the one and only Doug Alan (alias nessus).
Please feel free to modify anything and everything. You are even
welcome to claim the script as your own.
Cut at the dotted line, save into a temp file and say 
sh temp
This will
a) Print statistics immediately.
b) Create an executable program kate_stats
c) Copy kate_stats to $HOME/.kate_stats
d) Add the line .kate_stats to your .login file.

Direct all flames to that Black hole in the unix universe, /dev/null

[Hey!  This program will only work correctly until July 29th.  You
better fix this Mr. Lokanathan.  --Doug]

--------------------------- cut here ------------------------------
#!/bin/sh
: "This is a shell archive, meaning:                              "
: "1. Remove everything above the #! /bin/sh line.                "
: "2. Save the resulting test in a file.                          "
: "3. Execute the file with /bin/sh (not csh) to create the files:"
: "	kate_stats"
: "This archive created:  Fri Mar 21 14:21:34 EST 1986 "
sed 's/^X//' >kate_stats << 'END-of-kate_stats'
Xcat << KATE
X
XName		 : Kate Bush.
X
XAge		 : 27.
X
XSex		 : Female.
X
XBirthplace	 : Bexley Heath Maternity Hospital, England.
X
XBirthdate	 : 30 July 1958.
X
XMarital Status	 : single, but living with Del Palmer and her two cats
X		   Pyewacket and Zoodle in blissful sin for 7 (?) years.
X
XEducation	 : Left St Joseph's Convent Grammar School at age 16
X		   with 10 O Levels.
X
XCurrent Residence: A house in Kent, England.
XKATE
END-of-kate_stats
chmod u+x kate_stats
kate_stats
cp kate_stats $HOME/.kate_stats
echo .kate_stats >> $HOME/.login
exit