#!/usr/local/bin/perl -w eval 'exec /usr/local/bin/perl -w -S $0 ${1+"$@"}' if 0; # not running under some shell # # $Id: yes,v 1.1.1.1 2001/06/06 08:55:25 sdague Exp $ # # $Log: yes,v $ # Revision 1.1.1.1 2001/06/06 08:55:25 sdague # initial import # # Revision 1.1 2001/05/14 00:49:40 sdague # added more files # # Revision 1.2 1999/02/25 01:20:35 abigail # Added '--' support. # # Revision 1.1 1999/02/25 01:15:03 abigail # Initial revision # # use strict; my ($VERSION) = '$Revision: 1.1.1.1 $' =~ /([.\d]+)/; if (@ARGV) { if ($ARGV [0] eq '--version') { $0 =~ s{.*/}{}; print "$0 (Perl bin utils) $VERSION\n"; exit; } if ($ARGV [0] eq '--help') { $0 =~ s{.*/}{}; print < repeatedly prints out its arguments on standard output, untill killed. If no strings are given, I is printed. =head2 OPTIONS I accepts the following options: =over 4 =item --help Print out a short help message, then exit. =item --version Print out its version number, then exit. =item -- Stop parsing for options. Useful if you want to print out I<--help> or I<--version>. Use I to print out I<-->. =back =head1 ENVIRONMENT The working of I is not influenced by any environment variables. =head1 BUGS I has no known bugs. =head1 REVISION HISTORY $Log: yes,v $ Revision 1.1.1.1 2001/06/06 08:55:25 sdague initial import Revision 1.1 2001/05/14 00:49:40 sdague added more files Revision 1.2 1999/02/25 01:20:35 abigail Added '--' support. Revision 1.1 1999/02/25 01:15:03 abigail Initial revision =head1 AUTHOR The Perl implementation of I was written by Abigail, I. =head1 COPYRIGHT and LICENSE 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