#!/usr/local/bin/perl -w eval 'exec /usr/local/bin/perl -w -S $0 ${1+"$@"}' if 0; # not running under some shell # # $Id: rain,v 1.1.1.1 2001/06/06 08:55:04 sdague Exp $ # # $Log: rain,v $ # Revision 1.1.1.1 2001/06/06 08:55:04 sdague # initial import # # Revision 1.1 2001/05/14 00:49:39 sdague # added more files # # use strict; my ($VERSION) = '$Revision: 1.1.1.1 $' =~ /([.\d]+)/; if (@ARGV) { require File::Basename; $0 = File::Basename::basename ($0); print "$0 (Perl bin utils) $VERSION\n"; exit; } print "/" x 72, "\n" while 1; __END__ =pod =head1 NAME rain -- Let it rain. =head1 SYNOPSIS rain =head1 DESCRIPTION I simulates rain. =head2 OPTIONS I does not accept options. =head1 ENVIRONMENT The working of I is not influenced by any environment variables. =head1 BUGS I does not have any known bugs. =head1 REVISION HISTORY $Log: rain,v $ Revision 1.1.1.1 2001/06/06 08:55:04 sdague initial import Revision 1.1 2001/05/14 00:49:39 sdague added more files =head1 AUTHOR The Perl implementation of I was written by Abigail, I. =head1 COPYRIGHT and LICENSE This program is copyright by Abigail 1999. This program is free and open software. You may use, modify, distribute and sell this program (and any modified variants) in any way you wish, provided you do not restrict others to do the same. =cut