#!/usr/local/bin/perl -w eval 'exec /usr/local/bin/perl -w -S $0 ${1+"$@"}' if 0; # not running under some shell # # $Id: false,v 1.1.1.1 2001/06/06 08:54:30 sdague Exp $ # # $Log: false,v $ # Revision 1.1.1.1 2001/06/06 08:54:30 sdague # initial import # # Revision 1.1.1.1 2001/05/13 19:56:14 sdague # added initial import of PPT work # # Revision 1.1 1999/02/25 04:16:05 abigail # Initial revision # # use strict; my ($VERSION) = '$Revision: 1.1.1.1 $' =~ /([.\d]+)/; my $STATUS = $0 =~ /true$/ ? 0 : 1; if (@ARGV) { if ($ARGV [0] eq '--version') { $0 =~ s{.*/}{}; print "$0 (Perl bin utils) $VERSION\n"; exit; } if ($ARGV [0] eq '--help') { $0 =~ s{.*/}{}; my $success = $STATUS ? "failure" : "success"; print < exits succesfully. I exits unsuccesfully. =head2 OPTIONS I and I accept the following options: =over 4 =item --help Print out a short help message, then exit. =item --version Print out its version number, then exit. =back =head1 ENVIRONMENT The working of I and I are not influenced by any environment variables. =head1 BUGS I and I have no known bugs. =head1 REVISION HISTORY $Log: false,v $ Revision 1.1.1.1 2001/06/06 08:54:30 sdague initial import Revision 1.1.1.1 2001/05/13 19:56:14 sdague added initial import of PPT work Revision 1.1 1999/02/25 04:16:05 abigail Initial revision =head1 AUTHOR The Perl implementation of I and 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