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