#!/s/std/bin/perl # # (c) 1994-2000 Jeff Ballard. # open(F, "/u/b/a/ballard/public/html/bofh/excuses") || print "Content-type: text/html\n\nAck...can't read the excuse file! Don't expect the rest to work.\n"; srand(time); $number=0; @excuse = (); while( $excuse[$number] = ) { $number++; } $thisexcuse = $excuse[ (rand(1000)*$$)%($number+1) ]; print "Content-type: text/html\n"; print "\n"; print "\"Bastard Operator From Hell\"-Style Excuses\n"; print "
"; print ""; print "\"The Bastard Operator From Hell\"-style excuse server."; print ""; print "

"; print "The cause of the problem is:
"; print ""; print "$thisexcuse"; print "


"; print "The BOFH-style excuse generator brought to you by"; print " "; print "Jeff Ballard."; exit(0);