Skip navigation.
Home
Your source for Perl tips, howto's, faq and tutorials

getting information about a built in function

( categories: )

Use perldoc:

perldoc -f function

Example:

perldoc -f split

read module documentation

( categories: | )

There are 2 ways to get the information:

Solution 1:

perldoc module

Example: perldoc CGI

Solution 2:

man module

Example: man Mail::Send


Syndicate content