4

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?

piCookie
  • 9,640
  • 2
  • 19
  • 19

5 Answers5

6
perldoc perltoc

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

perldoc perlmodlib
moritz
  • 12,710
  • 1
  • 41
  • 63
1

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

Community
  • 1
  • 1
szabgab
  • 6,202
  • 11
  • 50
  • 64
1

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.

Offer Kaye
  • 179
  • 3
1

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

ysth
  • 96,171
  • 6
  • 121
  • 214
0

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.

Jon 'links in bio' Ericson
  • 20,880
  • 12
  • 98
  • 148