piCookie
piCookie

Reputation: 9820

What are the perldoc perlxxx options?

It appears that using perldoc perl gives the list of, e.g. perlre, perlvar, etc.

Is this the best place to find the list of what's available as an overview or tutorial or reference manual section? Is there another, better list?

Upvotes: 5

Views: 261

Answers (5)

ysth
ysth

Reputation: 98388

A more friendly starting place, with links to just a select few of the other perlxxx pages, is perldoc perlintro.

Upvotes: 1

Offer Kaye
Offer Kaye

Reputation: 179

I think "perldoc perltoc" is too verbose for just finding the list of "perlxxx" subjects. Instead use "perldoc perl". Or http://perldoc.perl.org/perl.html, which is the online version.

Upvotes: 1

Jon Ericson
Jon Ericson

Reputation: 21495

That should be a good start. You can also find the same information online: http://perldoc.perl.org/perl.html.

I'm not sure what you mean by better. There's a ton of good information at http://www.perl.com/ as well.

Upvotes: 0

moritz
moritz

Reputation: 12842

perldoc perltoc

is a bit more verbose about the various documentation files. If you want a list of core modules, try

perldoc perlmodlib

Upvotes: 6

szabgab
szabgab

Reputation: 6302

See also best online source to learn perl

Specifically for perldoc, you can also view the content online which might be easier on the eyes: perldoc online

Upvotes: 1

Related Questions