in reply to Need help with Getopt::Long and Pod::Usage

Hi,
Though I am not sure what your problem is, one mistake I found in your code is in the line push @informations ... statement.
Should be
push @informations, "Usage:\n To execute: perl ProgramName <argument>\ +n Help: perl ProgramName --help or perl ProgramName --h" if $options{ +help};

instead of
push @informations, "Usage:\n To execute: perl ProgramName <argument>\ +n Help: perl ProgramName --help or perl ProgramName --h" if $options{ +help);

Hope that helps