5
votes
What are the perldoc perlxxx options?
perldoc perltoc
is a bit more verbose about the various documentation files. If you want a list of core modules, try
perldoc perlmodlib
…
2
votes
How can I use perldoc to lookup the %ENV variable?
The searching for %ENV is a feature of the pager named 'less', not of perldoc. So if perldoc uses a different pager, this might not work.
Activestate Perl comes with HTML documentation, you …
6
votes
How do I use Unicode characters in Pod and perldoc?
Use =encoding utf-8 as the first POD directive in your file, and use a fairly recent perldoc (for example from 5.10-maint). Then it should work.
…
