Skip to content

Instantly share code, notes, and snippets.

@rwp0
Created August 10, 2022 05:55
Show Gist options
  • Save rwp0/c1be36ddc39707bf1be14adc3fac480d to your computer and use it in GitHub Desktop.
Save rwp0/c1be36ddc39707bf1be14adc3fac480d to your computer and use it in GitHub Desktop.
Perl GetOpt::Long Boilerplate
use Getopt::Long qw(
:config
auto_help
auto_version
no_ignore_case
bundling
);
my %options;
Getopt::Long::GetOptions(
'user|u=s' => \$options{user},
'host|h=s' => \$options{host},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment