I would like to use Getopt::ArgParse, as it provides a more userfriendly interface then Getopt::Long. Now the problem is that Getopt::ArgParse requires Moo, which in turn requires a whole bunch of packages that are not included in the standard CentOS repositories. As per customer policy I am kind of limited in what I can install ... so I was wondering if there is an argparse style package that does not require Moo or Moose.
EDIT I am giving Getopt::Lazy a try
EDIT 2 Getopt::Lazy seems to be really outdated - here is my attempt at using it.
EDIT 3 I was hoping to find something as usable and dependencyless as pythons argparse - its included in the standard library now, and in older versions it just requires one file ... after fiddling around with various modules I ended up using plain old Getopt::Long.