The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

EasyArgs - Perl module for easily handling command line arguments.

SYNOPSIS

        use EasyArgs('EzArgs');

        my %args = EzArgs;

        if(exists($args{'-l'}))
                {
                print "-l log file value is ". ($args{'-l'}) ."\n";
                }

DESCRIPTION