Problems? Is your data what you think it is? | |
PerlMonks |
Re: LDAP Server TLS testerby Arien (Pilgrim) |
on Jan 18, 2003 at 08:03 UTC ( [id://227935]=note: print w/replies, xml ) | Need Help?? |
I haven't had the opportunity to use Net::LDAP yet, so I will comment on the rest of the code. Instead of printing line by line, why not use a here-doc for your usage message? Or use Pod::Usage and document your script in POD. The following might make your defaults stand out more:
Often, things like if ($debug ne 0) { ... } are better written as if ($debug) { ... }. I would write debug and status messages to STDERR instead of STDOUT and include $0 (or similar) in error messages. Hope this helps. — Arien
In Section
Code Catacombs
|
|