in reply to Re^2: Want END block to run except when usage()/--help invocation
in thread Want END block to run except when usage()/--help invocation

You can use the no strict or no warnings pragmas. It is usually better to disable only some of the strictures or of the warnings, for example:
no strict 'vars'; no warnings 'recursion';
and only for a limited scope.

Update: fixed wrong formatting tags.

Je suis Charlie.