Help for this page

Select Code to Download


  1. or download this
    when ( 'h' ) { ... }
    
  2. or download this
    if ( $k eq 'h' ) { ...; next }
    
  3. or download this
    use Getopt::Long qw( GetOptions );
    
    ...
    
    @ARGV == 0
       or usage( "Too many arguments" );
    
  4. or download this
    use File::Basename qw( basename );
    
    ...
       say STDERR "Try '$prog --help' for more information.";
       exit( 1 );
    }