[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Sheflug] Linux (or at least Tux) crashes :-)



Working in my office yesterday I was disturbed by a thumping great crash at 
the other side of the room.

Investigating eventually revealed that my - stick on - Tux look-alike - 
shower radio - mascot - thing - had fallen behind my bookshelves. Happily 
this is the only Linux related crash I have experienced so far. Hope its not 
an omen!

See you on Saturday.

Bob Holland
___________________________________________________________________

Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html

  GNU the choice of a complete generation.

#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
 
while (<>){
        $_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
        print unless /^Delivered-To:/i ;
}