printf

printf FILEHANDLE FORMAT, LIST printf FILEHANDLE printf FORMAT, LIST printf Equivalent to print FILEHANDLE sprintf(FORMAT, LIST) , except that $\ (the output record separator) is not appended. The FORMAT and the LIST are actually parsed as a single list. The first argument of the list will be interpreted as the printf format. This means that printf(@_) will use $_[0] as the format. See sprintf for an explanation of the format argument. If use locale for LC_NUMERIC Look for this throught pod is

print

print FILEHANDLE LIST print FILEHANDLE print LIST print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable containing the name of or a reference to the filehandle, thus introducing one level of indirection. (NOTE: If FILEHANDLE is a variable and the next token is a term, it may be misinterpreted as an operator unless you interpose a + or put parentheses around the arguments.) If FILEHANDLE is omitted, prints to the last selected (see select) ou

pop

pop ARRAY pop EXPR pop Pops and returns the last value of the array, shortening the array by one element. Returns the undefined value if the array is empty, although this may also happen at other times. If ARRAY is omitted, pops the @ARGV array in the main program, but the @_ array in subroutines, just like shift. Starting with Perl 5.14, pop can take a scalar EXPR, which must hold a reference to an unblessed array. The argument will be dereferenced automatically. This aspect of pop is consider

podselect - print selected sections of pod documentation on standard output

NAME SYNOPSIS OPTIONS AND ARGUMENTS DESCRIPTION SEE ALSO AUTHOR NAME podselect - print selected sections of pod documentation on standard output SYNOPSIS podselect [-help] [-man] [-section section-spec] [file ...] OPTIONS AND ARGUMENTS -help Print a brief help message and exit. -man Print the manual page and exit. -section section-spec Specify a section to include in the output. See SECTION SPECIFICATIONS in Pod::Parser for the format to use for section-spec. This option may be given mul

pos

pos SCALAR pos Returns the offset of where the last m//g search left off for the variable in question ($_ is used when the variable is not specified). Note that 0 is a valid match offset. undef indicates that the search position is reset (usually due to match failure, but can also be because no match has yet been run on the scalar). pos directly accesses the location used by the regexp engine to store the offset, so assigning to pos will change that offset, and so will also influence the \G zer

Pod::Usage - print a usage message from embedded pod documentation

NAME SYNOPSIS ARGUMENTSFormatting base class Pass-through options DESCRIPTIONScripts EXAMPLESRecommended Use CAVEATS AUTHOR ACKNOWLEDGMENTS SEE ALSO NAME Pod::Usage - print a usage message from embedded pod documentation SYNOPSIS use Pod::Usage my $message_text = "This text precedes the usage message."; my $exit_status = 2; ## The exit status to use my $verbose_level = 0; ## The verbose level to use my $filehandle = \*STDERR; ## The filehandle to write to pod2u

podchecker - check the syntax of POD format documentation files

NAME SYNOPSIS OPTIONS AND ARGUMENTS DESCRIPTION RETURN VALUE ERRORS SEE ALSO AUTHORS NAME podchecker - check the syntax of POD format documentation files SYNOPSIS podchecker [-help] [-man] [-(no)warnings] [file ...] OPTIONS AND ARGUMENTS -help Print a brief help message and exit. -man Print the manual page and exit. -warnings -nowarnings Turn on/off printing of warnings. Repeating -warnings increases the warning level, i.e. more warnings are printed. Currently increasing to level two cau

Pod::Text::Color - Convert POD data to formatted color ASCII text

NAME SYNOPSIS DESCRIPTION BUGS SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::Text::Color - Convert POD data to formatted color ASCII text SYNOPSIS use Pod::Text::Color; my $parser = Pod::Text::Color->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.txt. $parser->parse_from_file ('file.pod', 'file.txt'); DESCRIPTION Pod::Text::Color is a simple subclass of Pod::Text that h

Pod::Text::Overstrike - Convert POD data to formatted overstrike text

NAME SYNOPSIS DESCRIPTION BUGS SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::Text::Overstrike - Convert POD data to formatted overstrike text SYNOPSIS use Pod::Text::Overstrike; my $parser = Pod::Text::Overstrike->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.txt. $parser->parse_from_file ('file.pod', 'file.txt'); DESCRIPTION Pod::Text::Overstrike is a simple subclass

Pod::Text::Termcap - Convert POD data to ASCII text with format escapes

NAME SYNOPSIS DESCRIPTION NOTES SEE ALSO AUTHOR COPYRIGHT AND LICENSE NAME Pod::Text::Termcap - Convert POD data to ASCII text with format escapes SYNOPSIS use Pod::Text::Termcap; my $parser = Pod::Text::Termcap->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to file.txt. $parser->parse_from_file ('file.pod', 'file.txt'); DESCRIPTION Pod::Text::Termcap is a simple subclass of Pod